complete story 5.4 with qa tests

This commit is contained in:
Naser Mansour
2025-12-27 02:02:37 +02:00
parent 77d32d0dae
commit 6eef462732
10 changed files with 449 additions and 11 deletions
+2 -3
View File
@@ -15,9 +15,8 @@ Route::get('/booking', function () {
return view('pages.booking');
})->name('booking');
Route::get('/posts', function () {
return view('pages.posts.index');
})->name('posts.index');
Volt::route('/posts', 'pages.posts.index')->name('posts.index');
Volt::route('/posts/{post}', 'pages.posts.show')->name('posts.show');
Route::get('/terms', function () {
return view('pages.terms');