@extends('admin.layouts.layout') @section('content')
@if ($withdrawals) @foreach ($withdrawals as $key => $withdrawal) @endforeach @endif
Sr.No Driver Name Driver Phone Amount Request Date Status Action
{{ $key + 1 }} {{ $withdrawal->driver ? $withdrawal->driver->first_name : '' }} {{ $withdrawal->driver ? $withdrawal->driver->last_name : '' }} {{ $withdrawal->driver ? $withdrawal->driver->country_code : '' }} {{ $withdrawal->driver ? $withdrawal->driver->phone_number : '' }} $ {{ $withdrawal->requested_amount }} {{ $withdrawal->date }}
@csrf
@endsection