@php
$statusColors = [
'active' => 'bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200',
'inactive' => 'bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300',
'pending' => 'bg-yellow-100 text-yellow-800 dark:bg-yellow-900 dark:text-yellow-200',
'suspended' => 'bg-red-100 text-red-800 dark:bg-red-900 dark:text-red-200',
];
@endphp
{{ __(ucfirst($customer->status)) }}
{{ __('Created') }}
{{ $customer->created_at->format('M d, Y') }}
{{ __('Email Verified') }}
{{ $customer->hasVerifiedEmail() ? $customer->email_verified_at->format('M d, Y') : __('No') }}
@if($customer->expires_at)
{{ __('Expires At') }}
{{ $customer->expires_at->format('M d, Y') }}
@endif