complete story 1.4 with qa tests and fixes

This commit is contained in:
Naser Mansour
2025-12-26 14:37:12 +02:00
parent ce5eaeffd9
commit f067c8d589
21 changed files with 1038 additions and 359 deletions
+17 -1
View File
@@ -5,9 +5,25 @@ use Laravel\Fortify\Features;
use Livewire\Volt\Volt;
Route::get('/', function () {
return view('welcome');
return view('pages.home');
})->name('home');
Route::get('/booking', function () {
return view('pages.booking');
})->name('booking');
Route::get('/posts', function () {
return view('pages.posts.index');
})->name('posts.index');
Route::get('/terms', function () {
return view('pages.terms');
})->name('terms');
Route::get('/privacy', function () {
return view('pages.privacy');
})->name('privacy');
Route::get('/language/{locale}', function (string $locale) {
if (! in_array($locale, ['ar', 'en'])) {
abort(400);