fix to Faculty

This commit is contained in:
aslan 2024-03-12 14:36:06 +03:00
parent 59d2e38110
commit db7704df6e
2 changed files with 5 additions and 2 deletions

View File

@ -15,9 +15,9 @@ class UpdateFacultyRequest extends FormRequest
{
return [
'position' => 'required|int|numeric|max:255',
'name' => ['required', 'string', 'max:255', "unique:faculties,name,{$this->faculty->id}",],
'name' => ['required', 'string', 'max:255', "unique:faculties,name,{$this->faculty->id}"],
'description' => 'nullable|string',
'slug' => ['required', 'string', 'max:255', "unique:faculties,slug,{$this->faculty->id}",],
'slug' => ['required', 'string', 'max:255', "unique:faculties,slug,{$this->faculty->id}"],
'educational_institution_id' => 'required|int|numeric|max:1000',
];
}

View File

@ -7,6 +7,7 @@
<h1 class=""> Редактировать факультет</h1>
{{ Form::open(['url' => route('faculties.update', $faculty), 'method' => 'PATCH', 'class' => 'needs-validation', 'novalidate']) }}
<div class="col">
<div class="mt-3">
{{ Form::label('position', 'Позиция', ['data-bs-toggle' => "tooltip", 'data-bs-title' => __('tooltips.faculty.position')]) }}
<span class="text-danger">*</span>
@ -50,6 +51,7 @@
{{ $errors->first('description') }}
@endif
</div>
<div class="mt-3">
{{ Form::label('educational_institution_id', 'Учебное заведение', ['data-bs-toggle' => "tooltip", 'data-bs-title' => __('tooltips.faculty.educational_institution_id')]) }}
<span class="text-danger">*</span>
@ -62,6 +64,7 @@
{{ $errors->first('educational_institution_id') }}
@endif
</div>
<div class="mt-3">
{{ Form::label('slug', 'URL', ['data-bs-toggle' => "tooltip", 'data-bs-title' => __('tooltips.faculty.slug')]) }}
</div>