@extends('reports.layouts.master') @section('title', 'Trial Balance') @section('footer') @include('reports.layouts.footer', ['setting' => $setting]) @endsection @section('header') @include('reports.layouts.header', ['setting' => $setting]) @endsection @section('title-content')
Trial Balance Branch Name: {{ Illuminate\Support\Str::limit($branchName, 20)}}
@endsection @section('main-content') @foreach($pageData as $row) @if($loop->last) @else @endif @endforeach
Account Debit Credit
{{$row[0]}} {{ $row[1] }} {{ $row[2] }}
{{$row[0]}} {{ $row[1] }} {{ $row[2] }}
@endsection