@extends('layouts.admin') @section('title') @lang('Withdraws') @endsection @section('breadcrumb')

@lang('Withdraws')

@endsection @section('content')
@forelse ($withdraws as $key => $item) @empty @endforelse
@lang('User') @lang('Withdraw Amount') @lang('Charge') @lang('Total') @lang('Status') @lang('Action')
{{ $item->user->username }} {{ showAdminAmount($item->amount) }} {{ showAdminAmount($item->charge) }} {{ showAdminAmount($item->total) }} @if ($item->status == 1) @lang('Accepted') @elseif($item->status == 2) @lang('Rejected') @else @lang('Pending') @endif
@if ($item->status == 0) @else @if ($item->status == 1) Accepted @else Rejected @endif @endif
@lang('No Data Found')
@if ($withdraws->hasPages()) @endif
@endsection @push('script') @endpush