= $this->extend('_layout') ?>
= $this->section('title') ?>
= lang('VideoClip.list.title') ?>
= $this->endSection() ?>
= $this->section('pageTitle') ?>
= lang('VideoClip.list.title') ?>
= $this->endSection() ?>
= $this->section('headerRight') ?>
= $this->endSection() ?>
= $this->section('content') ?>
= data_table(
[
[
'header' => lang('VideoClip.list.status.label'),
'cell' => function ($videoClip): string {
$pillVariantMap = [
'queued' => 'default',
'pending' => 'warning',
'running' => 'primary',
'canceled' => 'default',
'failed' => 'danger',
'passed' => 'success',
];
$pillIconMap = [
'queued' => 'timer-fill', // @icon('timer-fill')
'pending' => 'pause-fill', // @icon('pause-fill')
'running' => 'loader-fill', // @icon('loader-fill')
'canceled' => 'forbid-fill', // @icon('forbid-fill')
'failed' => 'close-fill', // @icon('close-fill')
'passed' => 'check-fill', // @icon('check-fill')
];
$pillIconClassMap = [
'queued' => '',
'pending' => '',
'running' => 'animate-spin',
'canceled' => '',
'failed' => '',
'passed' => '',
];
return '