@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')
| Account |
Debit |
Credit |
@foreach($pageData as $row)
@if($loop->last)
| {{$row[0]}} |
{{ $row[1] }} |
{{ $row[2] }} |
@else
| {{$row[0]}} |
{{ $row[1] }} |
{{ $row[2] }} |
@endif
@endforeach
@endsection