= $this->extend('_layout') ?>
= $this->section('pageTitle') ?>
= lang('Soundbite.list.title') ?>
= $this->endSection() ?>
= $this->section('headerRight') ?>
= lang('Soundbite.create') ?>
= $this->endSection() ?>
= $this->section('content') ?>
= data_table(
[
[
'header' => lang('Soundbite.list.soundbite'),
'cell' => function ($soundbite): string {
return '
' . esc($soundbite->title) . '' . format_duration((int) $soundbite->duration) . '
';
},
],
[
'header' => lang('Common.actions'),
'cell' => function ($soundbite): string {
return '' .
'';
},
],
],
$soundbites,
'mb-6',
) ?>
= $pager->links() ?>
= $this->endSection() ?>