complete story 5.1 with qa tests

This commit is contained in:
Naser Mansour
2025-12-27 01:33:05 +02:00
parent 30d0d46566
commit 8e3daddb1d
15 changed files with 1530 additions and 30 deletions
+7
View File
@@ -91,6 +91,13 @@ Route::middleware(['auth', 'active'])->group(function () {
Volt::route('/working-hours', 'admin.settings.working-hours')->name('working-hours');
Volt::route('/blocked-times', 'admin.settings.blocked-times')->name('blocked-times');
});
// Posts Management
Route::prefix('posts')->name('admin.posts.')->group(function () {
Volt::route('/', 'admin.posts.index')->name('index');
Volt::route('/create', 'admin.posts.create')->name('create');
Volt::route('/{post}/edit', 'admin.posts.edit')->name('edit');
});
});
// Client routes