@extends('administrator.layout') @section('admintitle', 'Withdrawal') @section('content')
@if (session()->has('success')) @endif @if (session()->has('error')) @endif
{{ __('text.withdrawal') }} {{ __('text.table') }}
@forelse($data as $index => $wd) @empty @endforelse
{{ __('text.name') }} {{ __('text.amount') }} {{ __('text.paymentmode') }} {{ __('text.note') }} {{ __('text.description') }} {{ __('text.paymentdate') }} {{ __('text.requestdate') }} {{ __('text.status') }}
{{ $wd->firstname }} {{ $wd->lastname }} {{$symbol}}{{ $wd->amount }} {{ $wd->method }} {{ $wd->discription }} {{ $wd->admin_discription }} {{ $wd->payment_date }} {{ $wd->requested_date }} @if($wd->payment_status == 0)
@elseif($wd->payment_status == 1)
{{ __('text.success') }}
@else($wd->payment_status == 2)
{{ __('text.rejected') }}
@endif
{{ __('text.no_records_found') }}
{{ $data->links() }}
@endsection