complete story 11.2 with qa tests

This commit is contained in:
Naser Mansour
2026-01-03 19:15:07 +02:00
parent f32ea2b68d
commit 06ece9f4b2
12 changed files with 1116 additions and 14 deletions
+2 -3
View File
@@ -11,9 +11,8 @@ Route::get('/', function () {
return view('pages.home');
})->name('home');
Route::get('/booking', function () {
return view('pages.booking');
})->name('booking');
Volt::route('/booking', 'pages.booking')->name('booking');
Volt::route('/booking/success', 'pages.booking-success')->name('booking.success');
Volt::route('/posts', 'pages.posts.index')->name('posts.index');
Volt::route('/posts/{post}', 'pages.posts.show')->name('posts.show');