@foreach($day['reminders'] as $reminder)
@php
$colorClass = 'task-green';
if ($reminder->category === 'مقالات') {
$colorClass = 'task-teal';
} elseif ($reminder->category === 'محصولات') {
$colorClass = 'task-blue';
} elseif ($reminder->importance === 'high') {
$colorClass = 'task-red';
} elseif ($reminder->importance === 'medium') {
$colorClass = 'task-orange';
}
$time = $reminder->date->format('H:i');
@endphp
{{ $reminder->title }}
@if($reminder->description)
{{ Str::limit($reminder->description, 100) }}
@endif
@if($reminder->category)
{{ $reminder->category }}
@endif
{{ $time }}