2021-09-02 16:34:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2020-07-27 09:35:34 +00:00
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
2022-03-04 14:33:48 +00:00
|
|
|
<?= esc($podcast->title) ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
2022-03-04 14:33:48 +00:00
|
|
|
<?= esc($podcast->title) ?>
|
2021-04-02 17:20:02 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->section('headerRight') ?>
|
2024-04-26 17:57:25 +00:00
|
|
|
<?php
|
|
|
|
// @icon('pencil-fill')
|
|
|
|
// @icon('add-fill')
|
|
|
|
?>
|
2024-05-09 17:55:41 +00:00
|
|
|
<x-Button uri="<?= route_to('podcast-edit', $podcast->id) ?>" variant="secondary" class="[&>span]:hidden [&>span]:md:block py-3 md:py-2" iconLeft="pencil-fill"><?= lang('Podcast.edit') ?></x-Button>
|
|
|
|
<x-Button uri="<?= route_to('episode-create', $podcast->id) ?>" variant="primary" class="[&>span]:hidden [&>span]:md:block py-3 md:py-2" iconLeft="add-fill"><?= lang('Episode.create') ?></x-Button>
|
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', [
|
2023-06-12 14:47:38 +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() ?>
|