@extends('layouts.front') @section('css') @endsection @section('content')
{{ __('Withdraw Date') }} | {{ __('Method') }} | {{ __('Account') }} | {{ __('Amount') }} | {{ __('Status') }} | |
---|---|---|---|---|---|
{{ date('d-M-Y', strtotime($withdraw->created_at)) }} | {{ $withdraw->method }} | @if ($withdraw->method != 'Bank'){{ $withdraw->acc_email }} | @else{{ $withdraw->iban }} | @endif{{ $sign->sign }}{{ round($withdraw->amount * $sign->value, 2) }} | @php if ($withdraw->status == 'pending') { $class = 'yellow-btn'; } elseif ($withdraw->status == 'completed') { $class = 'green-btn'; } else { $class = 'red-btn'; } @endphp |
{{ __('No Withdraw Found') }} |