@php
$presets = [
'This Month' => ['from' => now()->startOfMonth()->toDateString(), 'to' => now()->toDateString()],
'Last Month' => ['from' => now()->subMonth()->startOfMonth()->toDateString(), 'to' => now()->subMonth()->endOfMonth()->toDateString()],
'Last 7d' => ['from' => now()->subDays(6)->toDateString(), 'to' => now()->toDateString()],
'Last 30d' => ['from' => now()->subDays(29)->toDateString(), 'to' => now()->toDateString()],
];
@endphp
@foreach($presets as $label => $params)
@php $isActive = $from === $params['from'] && $to === $params['to']; @endphp
{{ $label }}
@endforeach