@extends('admin.layouts.app') @section('title', 'Proses Penarikan Dana') @section('content')

Proses Penarikan Dana #{{ $withdrawal['id'] }}

Kembali
@if (session('error')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Detail Penarikan

Nama Penjahit:

{{ $withdrawal['wallet']['user']['name'] }}

Jumlah Penarikan:

Rp {{ number_format($withdrawal['amount'], 0, ',', '.') }}

Bank:

{{ $withdrawal['bank_account']['bank_name'] }}

Nomor Rekening:

{{ $withdrawal['bank_account']['account_number'] }}

Atas Nama:

{{ $withdrawal['bank_account']['account_holder_name'] }}

Tanggal Permintaan:

{{ \Carbon\Carbon::parse($withdrawal['created_at'])->format('d M Y H:i') }}

@csrf
@push('scripts') @endpush @endsection