Compare commits
3 Commits
0419aebe18
...
9f926f4ac5
Author | SHA1 | Date |
---|---|---|
aslan | 9f926f4ac5 | |
aslan | 73e6502e60 | |
aslan | 97f4cd68e6 |
|
@ -4,6 +4,7 @@ namespace App\Helpers;
|
|||
|
||||
use App\Models\Direction;
|
||||
use App\Models\DirectionProfile;
|
||||
use App\Models\Document;
|
||||
use App\Models\EntranceExamination;
|
||||
use App\Models\ExaminationType;
|
||||
use App\Models\Faculty;
|
||||
|
@ -66,4 +67,10 @@ class PositionHelper
|
|||
$maxPosition = EntranceExamination::max('position');
|
||||
return $maxPosition >= 254 ? 255 : $maxPosition + 1;
|
||||
}
|
||||
|
||||
public static function document()
|
||||
{
|
||||
$maxPosition = Document::max('position');
|
||||
return $maxPosition >= 254 ? 255 : $maxPosition + 1;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,7 +24,9 @@ class DocumentController extends Controller
|
|||
public function create(): View|Application|Factory|\Illuminate\Contracts\Foundation\Application
|
||||
{
|
||||
$admissions = Admission::pluck('name', 'id');
|
||||
return view('admin.documents.create', compact('admissions'));
|
||||
$lastDocument = Document::latest()->first();
|
||||
// dd($lastDocument->admission_id);
|
||||
return view('admin.documents.create', compact('admissions', 'lastDocument'));
|
||||
}
|
||||
|
||||
public function store(StoreDocumentRequest $request): RedirectResponse
|
||||
|
|
|
@ -22,4 +22,24 @@ class StoreDocumentRequest extends FormRequest
|
|||
'admission_id' => 'required|int|numeric|max:1000',
|
||||
];
|
||||
}
|
||||
|
||||
public function messages(): array
|
||||
{
|
||||
return [
|
||||
'position.required' => 'Поле позиция обязательно.',
|
||||
'position.int' => 'Позиция должно быть целым числом.',
|
||||
'position.numeric' => 'Позиция должно быть числом.',
|
||||
'position.max' => 'Позиция не должен быть больше :max',
|
||||
'name.required' => 'Поле название обязательно.',
|
||||
'name.string' => 'Поле название должен быть строкой.',
|
||||
'name.max' => 'Поле название не должен превышать :max символов.',
|
||||
'name.unique' => 'Название уже занят.',
|
||||
'description.string' => 'Поле описание должен быть строкой.',
|
||||
'document.required' => 'Поле документ обязательно.',
|
||||
'admission_id.required' => 'Поле Пункт приема обучения обязательно.',
|
||||
'admission_id.int' => 'Стоимость Пункт приема должно быть целым числом.',
|
||||
'admission_id.numeric' => 'Стоимость Пункт приема должно быть числом.',
|
||||
'admission_id.max' => 'Стоимость Пункт приема не должен быть больше :max',
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,4 +25,24 @@ class UpdateDocumentRequest extends FormRequest
|
|||
'admission_id' => 'required|int|numeric|max:1000',
|
||||
];
|
||||
}
|
||||
|
||||
public function messages(): array
|
||||
{
|
||||
return [
|
||||
'position.required' => 'Поле позиция обязательно.',
|
||||
'position.int' => 'Позиция должно быть целым числом.',
|
||||
'position.numeric' => 'Позиция должно быть числом.',
|
||||
'position.max' => 'Позиция не должен быть больше :max',
|
||||
'name.required' => 'Поле название обязательно.',
|
||||
'name.string' => 'Поле название должен быть строкой.',
|
||||
'name.max' => 'Поле название не должен превышать :max символов.',
|
||||
'name.unique' => 'Название уже занят.',
|
||||
'description.string' => 'Поле описание должен быть строкой.',
|
||||
'document.required' => 'Поле документ обязательно.',
|
||||
'admission_id.required' => 'Поле Пункт приема обучения обязательно.',
|
||||
'admission_id.int' => 'Стоимость Пункт приема должно быть целым числом.',
|
||||
'admission_id.numeric' => 'Стоимость Пункт приема должно быть числом.',
|
||||
'admission_id.max' => 'Стоимость Пункт приема не должен быть больше :max',
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@ return new class extends Migration
|
|||
{
|
||||
Schema::create('documents', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name', 255)->unique();
|
||||
$table->string('name', 255);
|
||||
$table->string('file_name')->nullable();
|
||||
$table->text('description')->nullable();
|
||||
$table->string('url', 255);
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
@php use App\Helpers\PositionHelper; @endphp
|
||||
@extends('layouts.admin_layout')
|
||||
@section('content')
|
||||
@auth()
|
||||
|
@ -42,7 +43,7 @@
|
|||
{{ Form::label('position', 'Позиция') }}
|
||||
</div>
|
||||
<div class="mt-2">
|
||||
{{ Form::text('position', 0, ['class' => 'form-control']) }}
|
||||
{{ Form::text('position', PositionHelper::document(), ['class' => 'form-control']) }}
|
||||
</div>
|
||||
<div>
|
||||
@if ($errors->any())
|
||||
|
@ -53,7 +54,7 @@
|
|||
{{ Form::label('admission_id', 'Пункт экрана приема') }}
|
||||
</div>
|
||||
<div class="mt-2">
|
||||
{{ Form::select('admission_id', $admissions, null, ['class' => 'form-select']) }}
|
||||
{{ Form::select('admission_id', $admissions, $lastDocument->admission_id, ['class' => 'form-select']) }}
|
||||
</div>
|
||||
<div>
|
||||
@if ($errors->any())
|
||||
|
|
Loading…
Reference in New Issue