26 lines
659 B
PHP
Raw Permalink Normal View History

<?= $this->extend('_layout') ?>
<?= $this->section('pageTitle') ?>
<?= esc($podcast->title) ?>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<div class="grid grid-cols-1 gap-4 lg:grid-cols-2">
<x-Charts.Bar title="<?= lang('Charts.by_weekday') ?>" dataUrl="<?= route_to(
2023-02-22 16:29:45 +00:00
'analytics-data',
$podcast->id,
'Podcast',
'ByWeekday',
) ?>" />
<x-Charts.Bar title="<?= lang('Charts.by_hour') ?>" dataUrl="<?= route_to(
2023-02-22 16:29:45 +00:00
'analytics-full-data',
$podcast->id,
'PodcastByHour',
) ?>" />
</div>
<?= service('vite')
->asset('js/charts.ts', 'js') ?>
<?= $this->endSection() ?>