@props([ 'title' => '', 'value' => 0, 'icon' => 'assessment', 'color' => 'primary', 'trend' => null, 'trendDirection' => 'up', 'url' => null, 'subtitle' => null, 'loading' => false, 'currency' => false ]) @php $colorClasses = [ 'primary' => ['bg' => 'bg-primary', 'text' => 'text-primary', 'border' => 'border-primary'], 'success' => ['bg' => 'bg-success', 'text' => 'text-success', 'border' => 'border-success'], 'warning' => ['bg' => 'bg-warning', 'text' => 'text-warning', 'border' => 'border-warning'], 'danger' => ['bg' => 'bg-danger', 'text' => 'text-danger', 'border' => 'border-danger'], 'info' => ['bg' => 'bg-info', 'text' => 'text-info', 'border' => 'border-info'], 'secondary' => ['bg' => 'bg-secondary', 'text' => 'text-secondary', 'border' => 'border-secondary'], ]; $currentColor = $colorClasses[$color] ?? $colorClasses['primary']; @endphp
@if($url) @endif
@if($loading)
Loading...
@else {{ $icon }} @endif
@if($loading)
@else

@if($currency) {{ is_numeric($value) ? number_format($value, 2) : str_replace(['د.إ ', 'د.إ'], '', $value) }} @else {{ is_numeric($value) ? number_format($value) : $value }} @endif

@endif
@if($loading)
@else
{{ $title }}
@endif
@if($subtitle && !$loading) {{ $subtitle }} @endif @if($trend && !$loading)
{{ $trendDirection === 'up' ? 'trending_up' : 'trending_down' }} {{ $trend }}
@endif
@if($url && !$loading)
chevron_right
@endif
@if($url)
@endif