complete story 5.1 with qa tests
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user