@extends('layouts.digitar') @section('Breadcrumbs') {!! Breadcrumbs::render('meetings.attachment') !!} @endsection @section('content')
@include('flash::message') {!! Form::open([ 'route' => ['meetings.attachament.upload', $meeting->id], 'method' => 'post', 'files' => 'true', ]) !!} {!! Form::file('file[]', ['multiple' => true, 'class' => 'file']) !!} {!! Form::close() !!}

Anexos

@foreach ($meeting_files as $file) @endforeach
{{ $file->filename }} Download Excluir
@endsection