@extends('frontend.layouts.app') @section('title', 'Downloads - ' . app_name()) @section('content')

Downloads

@if($data['flyers'])
@foreach($data['flyers'] as $post) @php $image = '/up_data/flyers/images/'.$post->image; $link = '/up_data/flyers/pdfs/'.$post->pdf_file; @endphp
{{ $post->name }}

{{ $post->name }}

@endforeach
{!! $data['flyers']->appends( request()->except('page') )->links() !!}
@else

Sorry!, no flyers found.

@endif
@push('before-scripts') @endpush @endsection