@extends(!session('nebula', 0) ? 'layouts/web' : 'layouts/nebula') @section('content')
@include(!session('nebula', 0) ? 'customer.partials.header' : 'customer.nebula.header')

WITHDRAWAL

History

@forelse ($withdrawals as $withdrawal) @empty @endforelse
Amount Status Created At
{{ $withdrawal->amount }} @if ($withdrawal->status == \App\Models\WITHDRAWAL::STATUS_APPROVED) Approved @elseif ($withdrawal->status == \App\Models\WITHDRAWAL::STATUS_REJECTED) Rejected @else Pending @endif {{ $withdrawal->created_at->format('d M Y') }}
There are no withdrawals yet.
{{ $withdrawals->links() }}
@endsection