[WIP] config Datatables/Webpack/Yajra
This commit is contained in:
12
routes/Admin/Shop/Genres.php
Normal file
12
routes/Admin/Shop/Genres.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
Route::prefix('Genres')->name('Genres.')->group(function () {
|
||||
Route::get('', 'GenreController@index')->name('index');
|
||||
Route::get('create', 'GenreController@create')->name('create');
|
||||
Route::delete('destroy', 'GenreController@destroy')->name('destroy');
|
||||
Route::post('update', 'GenreController@update')->name('update');
|
||||
Route::post('store', 'GenreController@store')->name('store');
|
||||
Route::get('edit/{id}', 'GenreController@edit')->name('edit');
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user