����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.191.117.103 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/cbt.bofirm.com/routes/ |
Upload File : |
<?php /** * File name: web.php * Last modified: 20/07/21, 2:28 PM * Author: NearCraft - https://codecanyon.net/user/nearcraft * Copyright (c) 2021 */ use Illuminate\Support\Facades\Route; use App\Http\Controllers\HomeController; use App\Http\Controllers\SiteController; use App\Http\Controllers\AppInstallController; use App\Http\Controllers\WebHookController; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Route::get('/', [SiteController::class, 'index'])->name('welcome'); Route::get('/explore/{category}', [SiteController::class, 'explore'])->name('explore'); Route::get('/pricing', [SiteController::class, 'pricing'])->name('pricing'); Route::get('set-locale/{locale}', [HomeController::class, 'setLocale'])->name('locale'); Route::middleware(['auth:sanctum', 'verified'])->get('/home', [HomeController::class, 'index'])->name('home'); Route::get('install-success', [AppInstallController::class, 'onSuccessfulInstall'])->name('install_success'); Route::get('migrate', [AppInstallController::class, 'migrate'])->name('migrate'); Route::get('run-migrations', [AppInstallController::class, 'runMigrations'])->name('run_migrations'); /* |-------------------------------------------------------------------------- | Webhook Routes |-------------------------------------------------------------------------- */ Route::post('webhooks/razorpay', [WebHookController::class, 'razorpay'])->name('webhooks.razorpay'); Route::post('webhooks/stripe', [WebHookController::class, 'stripe'])->name('webhooks.stripe');