@extends('layouts.digitar') @section('Breadcrumbs') {!! Breadcrumbs::render('meetings.attachment') !!} @endsection @section('content')
@include('flash::message')

Adicionar Novo Anexo

{!! Form::open([ 'route' => ['meetings.attachament.upload', $meeting->id], 'method' => 'post', 'files' => 'true', 'class' => 'form-horizontal' ]) !!}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'Digite o nome do anexo']) !!}
{!! Form::file('file[]', ['multiple' => true, 'class' => 'form-control']) !!}
{!! Form::close() !!}

Lista de Anexos

@foreach ($meeting_files as $file) @endforeach
Nome Ações
{{ $file->name ?? 'Não informado' }} Download Excluir
@endsection