2021-09-02 16:34:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2020-07-27 09:35:34 +00:00
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= $podcast->title ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= $podcast->title ?>
|
2021-04-02 17:20:02 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->section('headerRight') ?>
|
|
|
|
<?= button(
|
|
|
|
lang('Podcast.edit'),
|
|
|
|
route_to('podcast-edit', $podcast->id),
|
2021-04-02 17:20:02 +00:00
|
|
|
['variant' => 'primary', 'iconLeft' => 'edit'],
|
|
|
|
['class' => 'mr-2'],
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
|
|
|
<?= button(lang('Episode.create'), route_to('episode-create', $podcast->id), [
|
2021-04-02 17:20:02 +00:00
|
|
|
'variant' => 'accent',
|
2020-10-02 15:38:16 +00:00
|
|
|
'iconLeft' => 'add',
|
|
|
|
]) ?>
|
2020-07-27 09:35:34 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2021-08-23 11:05:16 +00:00
|
|
|
<?= view_cell('Modules\Admin\Controllers\PodcastController::latestEpisodes', [
|
2020-10-02 15:38:16 +00:00
|
|
|
'limit' => 5,
|
2021-09-02 16:34:25 +00:00
|
|
|
'podcastId' => $podcast->id,
|
2020-10-02 15:38:16 +00:00
|
|
|
]) ?>
|
|
|
|
|
2020-07-27 09:35:34 +00:00
|
|
|
<?= $this->endSection() ?>
|