@extends('layouts.admin.master') @section('title', $pageTitle) @section('vendor-style') @endsection @section('vendor-script') @endsection @section('content')
@if(count($errors) > 0) @endif @if($message = Session::get('success')) @endif
@forelse ($transactions as $transaction) @empty @endforelse
# No Date Customer Ledger Branch Credit Debit Action
{{$loop->iteration}} {{ $transaction->transaction_no }} {{ date("d/m/Y", strtotime($transaction->transaction_date)) }} {{ ($transaction->customer()->exists()) ? $transaction->customer->name : '' }} {{ ($transaction->ledger()->exists()) ? $transaction->ledger->name : '' }} {{ $transaction->branch->name }} {{ $transaction->credit_amount }} {{ $transaction->debit_amount }}
@endsection