@extends('frontend.layouts.app')
@section('title', 'Downloads - ' . app_name())
@section('content')
@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
@endforeach
@else
Sorry!, no flyers found.
@endif
@push('before-scripts')
@endpush
@endsection