@extends('layout.app') @section('content')
@foreach ($lists as $list) @endforeach
ID Date Fund Send By Fund Received By Amount Note
{{ $list->id }} {{ $list->created_at }} @if ($list->fund_send_by == 0) Cash @else {{ $all_users->where('id', $list->fund_send_by)->first()->name }} @endif @if ($list->fund_received_by == 0) Cash @else {{ $all_users->where('id', $list->fund_received_by)->first()->name }} @endif {{ $list->amount }} {{ $list->note }}
@endsection @section('ajax') @endsection