first commit
This commit is contained in:
14
routes/CRUDgenerated/route.otherarticles.php
Normal file
14
routes/CRUDgenerated/route.otherarticles.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
use App\Http\Controllers\OtherarticlesController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
Route::prefix("otherarticles")->group(function () {
|
||||
Route::get('/', [OtherarticlesController::class, 'index'])->name('otherarticles.index');
|
||||
Route::get('/create', [OtherarticlesController::class, 'create'])->name('otherarticles.create');
|
||||
Route::post('/store', [OtherarticlesController::class, 'store'])->name('otherarticles.store');
|
||||
Route::post('/sort', [OtherarticlesController::class, 'sort'])->name('otherarticles.sort');
|
||||
Route::post('/updatealias', [OtherarticlesController::class, 'updatealias'])->name('otherarticles.updatealias');
|
||||
Route::get('/show/{id}', [OtherarticlesController::class, 'show'])->name('otherarticles.show');
|
||||
Route::get('/edit/{id}', [OtherarticlesController::class, 'edit'])->name('otherarticles.edit') ;
|
||||
Route::post('/update/{id}', [OtherarticlesController::class, 'update'])->name('otherarticles.update');
|
||||
Route::delete('/destroy/{id}', [OtherarticlesController::class, 'destroy'])->name('otherarticles.destroy');
|
||||
});
|
Reference in New Issue
Block a user