@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)
{{ number_format($withdrawal->amount - $withdrawal->transaction_fee_held, 2) }}
{{ $withdrawal->status_text }}
{{ __('Type') }}: {{ $withdrawal->type_text }}
{{ $withdrawal->created_at }}
@empty
{{ __('There are no withdrawals yet') }}
@endforelse
{{ $withdrawals->links() }}
@endsection