@extends('layouts.user') @push('css') @endpush @section('contents')
@if (count($requests) == 0) @else @foreach($requests as $key=>$data) @php $from = App\Models\User::where('id',$data->user_id)->first(); @endphp @endforeach @endif
{{ __('Date') }} {{ __('Request From') }} {{ __('Amount') }} {{ __('Status') }} {{ __('Details') }}

{{__('No Data Found')}}

{{ $data->created_at->toFormattedDateString() }}
{{ $from != NULL ? $from->name : 'User Deleted' }}
{{ showprice($data->amount,$currency) }}
{{ $data->status == 1 ? 'completed' : 'pending'}}
{{__('Details')}} @if ($data->status == 0) {{__('Send')}} @endif
{{ $requests->links() }}
@endsection @push('js') @endpush