= $this->extend('_layout') ?>
= $this->section('title') ?>
= lang('Page.all_pages') ?>
= $this->endSection() ?>
= $this->section('pageTitle') ?>
= lang('Page.all_pages') ?> (= count($pages) ?>)
= $this->endSection() ?>
= $this->section('headerRight') ?>
= lang('Page.create') ?>
= $this->endSection() ?>
= $this->section('content') ?>
= data_table(
[
[
'header' => lang('Page.page'),
'cell' => function ($page) {
return '
' .
esc($page->title) .
'/' .
esc($page->slug) .
'
';
},
],
[
'header' => lang('Common.actions'),
'cell' => function ($page) {
return '' . lang('Page.go_to_page') . '' .
'' . lang('Page.edit') . '' .
'' . lang('Page.delete') . '';
},
],
],
$pages,
) ?>
= $this->endSection() ?>