extend('_layout') ?> section('title') ?> endSection() ?> section('pageTitle') ?> endSection() ?> section('headerRight') ?> endSection() ?> section('content') ?> lang('Contributor.list.username'), 'cell' => function ($contributor) { return esc($contributor->username); }, ], [ 'header' => lang('Contributor.list.role'), 'cell' => function ($contributor, $podcast): string { $role = get_group_info(get_podcast_group($contributor, $podcast->id), $podcast->id)['title']; if ($podcast->created_by === $contributor->id) { $role = '
' . icon('shield-user-fill') . '' . $role . '
'; } return $role; }, ], [ 'header' => lang('Common.actions'), 'cell' => function ($contributor, $podcast) { // @icon('pencil-fill') // @icon('delete-bin-fill') return '' . lang('Contributor.edit') . '' . '' . lang('Contributor.remove') . ''; }, ], ], $podcast->contributors, '', $podcast, ) ?> endSection() ?>