Added CRUD routes for benefits, success stories, and visa grants

Landing registration page completed except design
This commit is contained in:
2025-07-08 17:53:06 +05:45
parent 71241f5167
commit 2339e48b28
29 changed files with 3722 additions and 926 deletions

View File

@ -73,7 +73,6 @@ Route::middleware('auth')->group(function () {
// Provide the download link for the backup file
return response()->download($backupPath)->deleteFileAfterSend(true);
})->name('backup.db');
});
Route::prefix("form")->group(function () {
@ -149,5 +148,8 @@ Route::middleware('auth')->group(function () {
require __DIR__ . '/route.preparationclasstestimonials.php';
require __DIR__ . '/route.visagrantposts.php';
require __DIR__ . '/route.features.php';
require __DIR__ . '/CRUDgenerated/route.success_stories.php';
require __DIR__ . '/CRUDgenerated/route.benefits.php';
require __DIR__ . '/CRUDgenerated/route.visa_grants.php';
});
require __DIR__ . '/route.client.php';