@extends('backend.layouts.app') @section('title', 'Withdraw List') @section('content')

{{ _trans('common.Withdraw List') }}

@foreach ($data['withdraw'] as $item) @endforeach
{{ _trans('common.SL') }} {{ _trans('common.Name') }} {{ _trans('common.Email') }} {{ _trans('common.Amount') }} {{ _trans('common.Created Date') }} {{ _trans('common.Status') }} {{ _trans('common.Action') }}
{{ __(@$item->id) }} {{ __(@$item->user->name) }} {{ __(@$item->user->email) }} {{ __(single_price(@$item->amount)) }} {{ main_date_format(@$item->created_date) }} @if ($item->status == 1) {{ _trans('common.Approved') }} @elseif($item->status == 2) {{ _trans('common.Rejected') }} @else {{ _trans('common.Pending') }} @endif
@endsection @push('js') @include('backend.partials.datatable') @endpush @section('script') @endsection