Files
opensem/routes/Admin/Core/Comments.php
Ludovic CANDELLIER 39c80ce6d1 add shipping rules
2023-07-16 14:45:42 +02:00

10 lines
469 B
PHP

<?php
Route::prefix('Comments')->name('Comments.')->group(function () {
Route::get('{model?}/{model_id?}', 'CommentController@index')->name('index');
Route::get('create/{model?}/{model_id?}', 'CommentController@create')->name('create');
Route::delete('destroy/{id?}', 'CommentController@destroy')->name('destroy');
Route::post('store', 'CommentController@store')->name('store');
Route::get('edit/{id}', 'CommentController@edit')->name('edit');
});