@extends('_layout.main') @section('content') @include('components.page-indicator', [ 'page' => 'Dompet', 'path' => ['Dompet', 'Penarikan'], ])

Penarikan

@if ($user->status == 'actived')
@csrf
@include('components.input-icon', [ 'icon' => 'RP', 'label' => 'Jumlah Penarikan', 'name' => 'amount', 'required' => true, 'type' => 'tel', ])
@include('components.input', [ 'label' => 'Nama', 'name' => 'name_b', 'readonly' => true, ])
@include('components.input', [ 'label' => 'No Rekening', 'name' => 'no_rekening', 'readonly' => true, ])
@include('components.input', [ 'label' => 'Catatan', 'name' => 'note', ])
@else @include('components.unverified', ['label' => 'Transfer RM']) @endif

Riwayat Penarikan

@include('components.print')
@if (count($withdraws) != 0) @foreach ($withdraws as $withdraw) @endforeach @else @endif
Tanggal Jumlah Biaya Catatan Status
{{ $withdraw->created_at }} @money($withdraw->amount) @money($withdraw->fee) {{ $withdraw->note }}
Tidak ada data yang tersedia di tabel

Menampilkan 1 hingga 10 dari 13 entri

@endsection @section('javascript') @endsection