refactoring routes
Tests & Lint & Deploy to Railway / deploy (push) Blocked by required conditions Details
Tests & Lint & Deploy to Railway / build (20.x, 8.3) (push) Has been cancelled Details

This commit is contained in:
aslan 2024-02-09 14:30:42 +03:00
parent 2279341988
commit de6b83d675
3 changed files with 9 additions and 8 deletions

View File

@ -13,6 +13,7 @@ class EducationalInstitution extends Model
protected $fillable = [
'id',
'name',
'slug',
'description',
'position',
];

View File

@ -3,18 +3,22 @@
use App\Http\Controllers\Catalog\DepartmentController;
use App\Http\Controllers\Catalog\EducationalInstitutionController;
use App\Http\Controllers\Catalog\FacultyController;
use App\Http\Controllers\FileController;
use App\Http\Controllers\DocumentController;
use App\Http\Controllers\ReceptionScreenController;
use App\Http\Controllers\UserController;
Route::middleware(['auth', 'verified'])->prefix('admin')->group(function () {
Route::get('/files/create/{file?}', [FileController::class, 'create'])->name('files_create');
Route::get('/files/download/{file}', [FileController::class, 'download'])->name('files.download');
Route::get('/dashboard', function () {
return view('admin');
})->name('dashboard');
Route::get('/files/create/{document?}', [DocumentController::class, 'create'])->name('document_create');
Route::get('/files/download/{Document}', [DocumentController::class, 'download'])->name('document.download');
Route::resource('/educational-institutions', EducationalInstitutionController::class)
->scoped(['educational_institution' => 'slug']);
Route::resources([
'/files' => FileController::class,
'/files' => DocumentController::class,
'/users' => UserController::class,
'/admin-reception-screen' => ReceptionScreenController::class,
'/faculties' => FacultyController::class,

View File

@ -3,10 +3,6 @@
use App\Http\Controllers\ProfileController;
use Illuminate\Support\Facades\Route;
Route::get('/dashboard', function () {
return view('admin');
})->prefix('admin')->middleware(['auth', 'verified'])->name('dashboard');
Route::middleware('auth')->group(function () {
Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');