complete story 6.6 with qa test

This commit is contained in:
Naser Mansour
2025-12-27 20:50:09 +02:00
parent e6559ef56d
commit 80f46a0284
9 changed files with 1271 additions and 34 deletions
+1
View File
@@ -83,6 +83,7 @@ Route::middleware(['auth', 'active'])->group(function () {
Route::prefix('timelines')->name('admin.timelines.')->group(function () {
Volt::route('/', 'admin.timelines.index')->name('index');
Volt::route('/create', 'admin.timelines.create')->name('create');
Volt::route('/export', 'admin.timelines.export-timelines')->name('export');
Volt::route('/{timeline}', 'admin.timelines.show')->name('show');
});