backoffice/routes/web.php

12 lines
No EOL
333 B
PHP

<?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']);