@extends('layouts.app') @section('title', 'Saved reports') @section('content')
Filter presets you can reopen in one click, and schedules that email a report to you.
| Name | Report | Shared | |
|---|---|---|---|
| {{ $report->name }}
@if ($report->filters)
{{ \Illuminate\Support\Str::limit(http_build_query($report->filters), 40) }}
@endif
|
{{ $reports[$report->report_key] ?? $report->report_key }} | {{ $report->is_shared ? 'shared' : 'private' }} |
| Name | Report | By |
|---|---|---|
| {{ $report->name }} | {{ $reports[$report->report_key] ?? $report->report_key }} | {{ $report->owner?->name ?: '—' }} |
| Report | Frequency | Format | Send to | Last sent | Status | |
|---|---|---|---|---|---|---|
| {{ $reports[$subscription->report_key] ?? $subscription->report_key }} | {{ title_case_words($subscription->frequency) }} | {{ $subscription->format === 'csv' ? 'CSV attachment' : 'Link' }} | {{ $subscription->email }} | {{ $subscription->last_sent_at?->diffForHumans() ?: 'never' }} | {{ $subscription->is_active ? 'Active' : 'Paused' }} |