firstcommit

This commit is contained in:
2025-08-17 16:23:14 +05:45
commit 76bf4c0a18
2648 changed files with 362795 additions and 0 deletions

21
routes/web.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Frontend Web Routes
|--------------------------------------------------------------------------
*/
/**************************** Routes For HomePage **********************************/
require_once __DIR__.'/frontend/web.php';
Route::get('test', function(){
return view('mail.send_subscription_mail');
});