@extends('layouts.front-end.body') @section('content')

@foreach($withdraws as $withdraw)
{{__('message.withdrawal')}} (฿):{{number_format($withdraw->amount_withdraw,2)}}
{{__('message.order no')}}: 000000{{$withdraw->id}}
{{__('message.withdrawal status')}}: @if($withdraw->is_approve==1) {{__('message.approved')}} @elseif($withdraw->reject==1) {{__('message.reject')}} @else {{__('message.pending')}} @endif
@endforeach
@endsection @section('meta') {{ __('message.transaction') }} @endsection