@php
$statusColors = [
'pending' => 'warning',
'approved' => 'success',
'rejected' => 'danger',
'suspended' => 'secondary'
];
$statusColor = $statusColors[$shop->registration_status] ?? 'secondary';
@endphp
{{ ucfirst($shop->registration_status) }}
@if($shop->store_number)
{{ $shop->store_number }}
@endif
@if($shop->application_date)
{{ $shop->application_date->format('M d, Y') }}
@endif
@if($shop->approved_at)
{{ $shop->approved_at->format('M d, Y') }}
@endif