Add option to add tvshows in admin interface

This commit is contained in:
DariusIII
2026-05-25 10:12:18 +02:00
parent de3b90d385
commit cb080efe8f
8 changed files with 951 additions and 2 deletions
+2
View File
@@ -309,6 +309,8 @@ Route::middleware(['role:Admin', '2fa'])->prefix('admin')->group(function () {
Route::get('show-list', [AdminShowsController::class, 'index'])->name('admin.show-list');
Route::match(['GET', 'POST'], 'show-edit', [AdminShowsController::class, 'edit'])->name('admin.show-edit');
Route::match(['GET', 'POST'], 'show-add', [AdminShowsController::class, 'create'])->name('admin.show-add');
Route::get('show-add/lookup', [AdminShowsController::class, 'lookup'])->name('admin.show-add.lookup');
Route::get('show-remove/{id}', [AdminShowsController::class, 'destroy'])->name('admin.show-remove');
Route::get('comments-list', [AdminCommentsController::class, 'index'])->name('admin.comments-list');
Route::post('comments-delete/{id}', [AdminCommentsController::class, 'destroy'])->name('admin.comments-delete');