@if(isset($isExcel) && $isExcel)
@yield('content')
@else
@yield('title', 'PDF Report')
@include('pdf.layouts.page_border')
{{-- Header --}}
@include('pdf.layouts.header')
{{-- Main Content --}}
@yield('content')
{{-- Footer --}}
@include('pdf.layouts.footer')
@endif