@extends('layouts.app') @section('content')

Account Report

{{-- Back Button --}} Back {{-- Filter Form --}}
@csrf
{{-- Export & Print Buttons --}} @if(isset($data))
Print
@csrf
@csrf
@endif {{-- Report Table --}} @if(isset($data) && count($data) > 0) @foreach($data as $i => $row) @endforeach
# Voucher ID Voucher Date Account Title Debit Credit Remarks Site Company
{{ $i + 1 }} {{ $row->Voucher_ID }} {{ $row->Voucher_Date }} {{ $row->Account_Title }} {{ number_format($row->Debit, 2) }} {{ number_format($row->Credit, 2) }} {{ $row->Remarks }} {{ $row->Site }} {{ $row->Company }}
@elseif(isset($data))
No records found for selected filters.
@endif
@endsection