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

Экран Приема


Создать пункт Экрана приема

@foreach($onlineDocuments as $onlineDocument) @if(count($onlineDocument->files) !== 0) @else @endif @endforeach
Позиция Название действия
{{ $onlineDocument->position }} {{ $onlineDocument->name }} редактировать удалить
@foreach($onlineDocument->files->sortBy('position') as $file) @endforeach
Позиция Имя Файла действия
{{ $file->position }} {{ $file->name }} редактировать удалить
Добавить файл


{{ Form::open(array('url' => route('uploadfile'), 'method' => 'POST', 'files'=>'true')) }} Select the file to upload. {{ Form::file('image') }} {{ Form::submit('Upload File')}} {{Form::close()}}
@endsection