This commit is contained in:
2025-09-25 15:18:08 +05:00
parent abe8334ed5
commit 88ea93bb79
5 changed files with 153 additions and 6 deletions

View File

@@ -1,9 +1,7 @@
<?php
use App\Http\Controllers\OnlinePaymentController;
use Illuminate\Support\Facades\Route;
Route::view('/login', 'wip')->name('login');
Route::get('api/online-payment-store', function () {
return request()->all();
})->name('online-payment-store');
Route::get('api/online-payment-store', [OnlinePaymentController::class, 'index'])->name('online-payment-store');