{{-- resources/views/reports/partials/filters.blade.php --}} @php $route = $route ?? request()->route()->getName(); @endphp
{{-- Quick presets --}} @php $presets = [ ['label' => 'Today', 'from' => today()->toDateString(), 'to' => today()->toDateString()], ['label' => 'This Week', 'from' => now()->startOfWeek()->toDateString(), 'to' => now()->endOfWeek()->toDateString()], ['label' => 'This Month', 'from' => now()->startOfMonth()->toDateString(), 'to' => now()->endOfMonth()->toDateString()], ['label' => 'Last Month', 'from' => now()->subMonth()->startOfMonth()->toDateString(), 'to' => now()->subMonth()->endOfMonth()->toDateString()], ['label' => 'This Quarter', 'from' => now()->startOfQuarter()->toDateString(), 'to' => now()->endOfQuarter()->toDateString()], ['label' => 'This Year', 'from' => now()->startOfYear()->toDateString(), 'to' => now()->endOfYear()->toDateString()], ]; @endphp @foreach($presets as $preset) {{ $preset['label'] }} @endforeach
to {{-- Export --}} @if(isset($showExport) && $showExport) @csrf
@endif