@extends('app.master') @section('title',$title) @section('breadcrumb') @include('app.layouts.rent.breadcrumb',[ 'pageTitle' => $title, 'lists' => [ [ 'link' => '#', 'name' => 'Accounting Reports', ], [ 'link' => 'accounting.reports.trialbalance', 'name' => 'Trial Balance', ] ] ]) @endsection @php $unique = uniqid(); /** * EXPECTED BEHAVIOR * Income (CR) * Expense (DR) * * Asset (DR) * Liability (CR) * Equity (CR) * * EXEPTIONS WILL BE SHOWN IN BRACKETS */ $from = request()->from ?? date('Y-m-01'); $to = request()->to ?? date('Y-m-t'); $period = date('d F, Y',strtotime($from)).' To '.date('d F, Y',strtotime($to)); $fileName = str_replace('&','_',$title).'_'.str_replace(' ','_',$period); $companyLogo = asset($company['company.logo']); $companyFooterLogo = getBase64($company['company.footerLogo']); @endphp @section('content')