@extends('layout.app') @section('title') Inward Transaction @endsection @section('pagetitle') Inward Transaction @endsection @section('content')

Inward Transaction

From Date To Date
@foreach($paylods as $key) @endforeach
S/N Account Name Account No Amount Description Reference Transaction Date
{{ $i+1 }} {{ ucwords($key->customer->first_name." ".$key->customer->last_name)}} {{$key->customer->acctno}} {{number_format($key->amount,2)}} {{$key->reference_no}} {{$key->notes}} {{date("d-m-Y h:ia",strtotime($key->created_at))}}
@endsection @section('scripts') @endsection