@extends('frontend.layouts.app')
@section('title', 'Catalogs - ' . app_name())
@push('head-area')
@endpush
@section('content')
Catalogs
@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
@endsection