@php $headerOption = [ 'title' => 'Welcome to Dashboard', 'noCardView' => true, ]; function getStatusIcon($status) { $icons = [ 'Pending' => 'bx-time', 'Sent to Merchant' => 'bx-envelope', 'Pending Submission' => 'bx-time', 'Submitted' => 'bx-upload', 'Approved' => 'bx-check', 'Declined' => 'bx-x', 'Closed' => 'bx-lock', 'Hold' => 'bx-pause', ]; return $icons[$status] ?? 'bx-file'; } @endphp @extends('admin.layouts.layout', $headerOption) @section('content')