{{ __('Custom Reports') }}

Create New Report

Your Custom Reports

@if($reports->isEmpty())

No custom reports

Get started by creating a new custom report.

@else
@foreach($reports as $report)

{{ $report->name }}

{{ ucfirst($report->type) }}

Created {{ $report->created_at->format('M d, Y') }}

{{ count($report->columns) }} columns
@if($report->is_scheduled)
Scheduled: {{ ucfirst($report->schedule_frequency) }}
@endif
View Report
@csrf @method('DELETE')
@endforeach
@endif
@if($recentExports->isNotEmpty())

Recent Exports

@foreach($recentExports as $export) @endforeach
Report Format Generated Size Actions
{{ $export->report->name }}
{{ ucfirst($export->report_type) }}
{{ strtoupper($export->format) }} {{ $export->generated_at->format('M d, Y g:i A') }} {{ $export->getFileSizeAttribute() }} Download
@endif