@php
$typeColors = [
'full' => 'bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400',
'database_only' => 'bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400',
'files_only' => 'bg-purple-100 text-purple-800 dark:bg-purple-900/30 dark:text-purple-400',
];
$typeLabels = [
'full' => 'Full Backup',
'database_only' => 'Database Only',
'files_only' => 'Files Only',
];
@endphp
{{ $typeLabels[$info['type']] ?? $info['type'] }}
Created on {{ \Carbon\Carbon::parse($info['created_at'])->format('d M Y \a\t H:i') }}