Compare commits
No commits in common. "9f926f4ac5fe071af38cfa4e84ccd376952806be" and "0419aebe18d4eb14efaf525467d4c310b0e16aaa" have entirely different histories.
9f926f4ac5
...
0419aebe18
|
@ -4,7 +4,6 @@ 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;
|
||||
|
@ -67,10 +66,4 @@ 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,9 +24,7 @@ class DocumentController extends Controller
|
|||
public function create(): View|Application|Factory|\Illuminate\Contracts\Foundation\Application
|
||||
{
|
||||
$admissions = Admission::pluck('name', 'id');
|
||||
$lastDocument = Document::latest()->first();
|
||||
// dd($lastDocument->admission_id);
|
||||
return view('admin.documents.create', compact('admissions', 'lastDocument'));
|
||||
return view('admin.documents.create', compact('admissions'));
|
||||
}
|
||||
|
||||
public function store(StoreDocumentRequest $request): RedirectResponse
|
||||
|
|
|
@ -22,24 +22,4 @@ 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,24 +25,4 @@ 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);
|
||||
$table->string('name', 255)->unique();
|
||||
$table->string('file_name')->nullable();
|
||||
$table->text('description')->nullable();
|
||||
$table->string('url', 255);
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
@php use App\Helpers\PositionHelper; @endphp
|
||||
@extends('layouts.admin_layout')
|
||||
@section('content')
|
||||
@auth()
|
||||
|
@ -43,7 +42,7 @@
|
|||
{{ Form::label('position', 'Позиция') }}
|
||||
</div>
|
||||
<div class="mt-2">
|
||||
{{ Form::text('position', PositionHelper::document(), ['class' => 'form-control']) }}
|
||||
{{ Form::text('position', 0, ['class' => 'form-control']) }}
|
||||
</div>
|
||||
<div>
|
||||
@if ($errors->any())
|
||||
|
@ -54,7 +53,7 @@
|
|||
{{ Form::label('admission_id', 'Пункт экрана приема') }}
|
||||
</div>
|
||||
<div class="mt-2">
|
||||
{{ Form::select('admission_id', $admissions, $lastDocument->admission_id, ['class' => 'form-select']) }}
|
||||
{{ Form::select('admission_id', $admissions, null, ['class' => 'form-select']) }}
|
||||
</div>
|
||||
<div>
|
||||
@if ($errors->any())
|
||||
|
|
Loading…
Reference in New Issue