[WIP] config Datatables/Webpack/Yajra

This commit is contained in:
Ludovic CANDELLIER
2020-04-12 04:09:36 +02:00
parent cd9b6ea74c
commit 134e04d197
49 changed files with 1204 additions and 670 deletions

View 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');
});