History
@if(count($transcation) != 0)
@foreach($transcation as $r)
@if($r->type == 'cr')
Transfer From {{$r->payment_type}}{{($r->type == 'cr')? "+" : "-"}} ₹{{$r->amount}}
@elseif($r->type == 'dr')
Payment to From {{$r->payment_type}}{{($r->type == 'cr')? "+" : "-"}} ₹{{$r->amount}}
@endif
@endforeach
@else
No Data
@endif