first commit

This commit is contained in:
2025-07-07 18:01:52 +05:45
commit 71241f5167
2095 changed files with 112735 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<?php
use App\Http\Controllers\PreparationclasstestimonialsController;
use Illuminate\Support\Facades\Route;
Route::prefix("preparationclasstestimonials")->group(function () {
Route::get('/', [PreparationclasstestimonialsController::class, 'index'])->name('preparationclasstestimonials.index');
Route::get('/create', [PreparationclasstestimonialsController::class, 'create'])->name('preparationclasstestimonials.create');
Route::post('/store', [PreparationclasstestimonialsController::class, 'store'])->name('preparationclasstestimonials.store');
Route::post('/sort', [PreparationclasstestimonialsController::class, 'sort'])->name('preparationclasstestimonials.sort');
Route::post('/updatealias', [PreparationclasstestimonialsController::class, 'updatealias'])->name('preparationclasstestimonials.updatealias');
Route::get('/show/{id}', [PreparationclasstestimonialsController::class, 'show'])->name('preparationclasstestimonials.show');
Route::get('/edit/{id}', [PreparationclasstestimonialsController::class, 'edit'])->name('preparationclasstestimonials.edit') ;
Route::post('/update/{id}', [PreparationclasstestimonialsController::class, 'update'])->name('preparationclasstestimonials.update');
Route::delete('/destroy/{id}', [PreparationclasstestimonialsController::class, 'destroy'])->name('preparationclasstestimonials.destroy');
Route::get('/toggle/{id}', [PreparationclasstestimonialsController::class, 'toggle'])->name('preparationclasstestimonials.toggle');
});