@extends('admin.layout.default') @section('title', 'Logo') @section('body')
@foreach($pdfs as $pdf) @if(count($pdf->getMedia('pdf')))
{{$pdf->title}}
{!! Form::open(['action'=> ['\App\Http\Controllers\Admin\PdfController@show', $pdf->getMedia('pdf')[0]], 'method'=>'POST']) !!} {{ Form::hidden('getPath', $pdf->getMedia('pdf')[0]->getPath()) }} {{ Form::hidden('file_name', json_decode($pdf->getMedia('pdf')[0]->getOriginal('custom_properties'), true)['name']) }} {!! Form::submit('Télécharger',['class'=>'btn btn-secondary']) !!} {!! Form::close() !!}
@endif @endforeach
@endsection