wip
This commit is contained in:
10
app/Http/Controllers/ApiTesterController.php
Normal file
10
app/Http/Controllers/ApiTesterController.php
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
|
class ApiTesterController extends Controller
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use App\Http\Controllers\ApiTesterController;
|
||||||
use App\Http\Controllers\Auth\LoginController;
|
use App\Http\Controllers\Auth\LoginController;
|
||||||
use App\Http\Controllers\Auth\RegisterController;
|
use App\Http\Controllers\Auth\RegisterController;
|
||||||
use App\Http\Controllers\Auth\ResetPasswordController;
|
use App\Http\Controllers\Auth\ResetPasswordController;
|
||||||
@@ -31,6 +32,8 @@ Route::middleware(['auth'])->group(function () {
|
|||||||
Route::post('password-change', [PasswordChangeController::class, 'update'])->name('password-change.update');
|
Route::post('password-change', [PasswordChangeController::class, 'update'])->name('password-change.update');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Route::get('tester', [ApiTesterController::class, 'index']);
|
||||||
|
|
||||||
Route::get('online-payment-store', [OnlinePaymentController::class, 'store'])
|
Route::get('online-payment-store', [OnlinePaymentController::class, 'store'])
|
||||||
->name('online-payment-store');
|
->name('online-payment-store');
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user