@extends('layout.app') @section('content') New Fund Transfer ID Date Fund Send By Fund Received By Amount Note @foreach ($lists as $list) {{ $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 }} @endforeach @csrf @method('post') Fund Transfer × Fund Send By Select Send By CASH @foreach ($users as $s) {{ $s->name }} @endforeach Fund Received By Select Received By CASH @foreach ($users as $s) {{ $s->name }} @endforeach Transfer Amount Note @endsection @section('ajax') @endsection