@extends('backend.master') @section('title', 'Edit Withdraw #'.$withdraw->id) @push('styles') {{-- Bootstrap Icons --}} @endpush @section('content') @php if ($withdraw->status === 'pending') { $statusClass = 'badge-pending'; $statusLabel = 'Pending'; } elseif ($withdraw->status === 'approved') { $statusClass = 'badge-approved'; $statusLabel = 'Approved'; } else { $statusClass = 'badge-rejected'; $statusLabel = 'Rejected'; } $isBank = str_starts_with($withdraw->method, 'bank:'); @endphp