@extends('layouts.admin-layout') @section('content') @auth()

Прикрепить файл

{{ Form::open(['url' => route('documents.store'), 'method' => 'POST', 'files'=>'true']) }}
{{ Form::label('document', 'Путь к документу') }}
{{ Form::file('document', ['class' => 'form-control']) }}
@if ($errors->any()) {{ $errors->first('document') }} @endif
{{ Form::label('name', 'Имя файла') }}
{{ Form::text('name', '', ['class' => 'form-control']) }}
@if ($errors->any()) {{ $errors->first('name') }} @endif
{{ Form::label('position', 'Позиция') }}
{{ Form::text('position', 0, ['class' => 'form-control']) }}
@if ($errors->any()) {{ $errors->first('name') }} @endif
{{ Form::label('idReceptionScreen', 'Пункт экрана приема') }}
{{ Form::select('idReceptionScreen', $receptionScreens, null, ['class' => 'form-select']) }}
@if ($errors->any()) {{ $errors->first('idReceptionScreen') }} @endif
{{ Form::submit('Загрузить файл', ['class' => 'btn btn-primary'])}}
{{Form::close()}}
{{-- @if($idReceptionScreen !== null)--}} {{--
--}} {{--

Файлы пункта Экрана Приема: {{ $receptionScreens[$idReceptionScreen] }}

--}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- @foreach($files as $file)--}} {{-- --}} {{-- --}} {{-- --}} {{-- @endforeach--}} {{-- --}} {{--
ПозицияНазвание
{{ $file->position }}{{ $file->name }}
--}} {{--
--}} {{-- @endif--}}
@endauth @endsection