@extends('layouts.layout-inner') @section('content')

{{ isset($pageTitle) ? $pageTitle : 'Untitled' }}

@foreach ($brochures as $brochure)
@php $month = Carbon\Carbon::parse($brochure->start_date)->format('M'); $year = Carbon\Carbon::parse($brochure->start_date)->format('Y'); @endphp
{{ $month }}
{{ $year }}

{{ $brochure->title }}

PDF Download

@endforeach
@endsection