@props(['dateFrom', 'dateTo']) @php $today = now(); $presets = [ 'today' => [$today->toDateString(), $today->toDateString()], 'yesterday' => [$today->copy()->subDay()->toDateString(), $today->copy()->subDay()->toDateString()], 'week' => [$today->copy()->startOfWeek()->toDateString(), $today->toDateString()], 'month' => [$today->copy()->startOfMonth()->toDateString(), $today->toDateString()], 'all' => ['', ''], ]; $active = collect($presets)->search(fn ($range) => $range[0] === $dateFrom && $range[1] === $dateTo); @endphp
@foreach (['today' => 'Today', 'yesterday' => 'Yesterday', 'week' => 'This Week', 'month' => 'This Month', 'all' => 'All Time'] as $key => $label) @endforeach
to