⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.101
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
taxi.dev-unit.com
/
routes
/
View File Name :
api.php
<?php /* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can register API routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | is assigned the "api" middleware group. Enjoy building your API! | */ /* * These routes are prefixed with 'api' by default. * These routes use the root namespace 'App\Http\Controllers\Api'. */ Route::namespace ('Api')->group(function () { /** * These routes are prefixed with 'api/v1'. * These routes use the root namespace 'App\Http\Controllers\Api\V1'. */ Route::prefix('v1')->namespace('V1')->group(function () { include_route_files('api/v1'); Route::get('/razorpay', 'RazorPayController@razorpay'); Route::get('/payment-success', 'RazorPayController@razorpay_success')->name('payment.success'); }); });