Add routes, controllers, models and views

This commit is contained in:
Admin 2026-08-11 06:20:21 +00:00
parent dd9f4c794f
commit 7423727fe1

12
routes/web.php Normal file
View file

@ -0,0 +1,12 @@
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\WebhookController;
use App\Http\Controllers\DashboardController;
Route::get('/', function () {
return redirect('/dashboard');
});
Route::get('/dashboard', [DashboardController::class, 'index']);
Route::post('/webhook', [WebhookController::class, 'handle']);