extend('_layout') ?> section('title') ?> endSection() ?> section('pageTitle') ?> () endSection() ?> section('headerRight') ?> endSection() ?> section('content') ?> lang('User.list.user'), 'cell' => function ($user) { return '
' . esc($user->username) . '' . $user->email . '
'; }, ], [ 'header' => lang('User.list.roles'), 'cell' => function ($user) { return implode(',', $user->roles) . '' . lang('User.edit_roles', [ 'username' => esc($user->username), ]) . ''; }, ], [ 'header' => lang('User.list.banned'), 'cell' => function ($user) { return $user->isBanned() ? lang('Common.yes') : lang('Common.no'); }, ], [ 'header' => lang('Common.actions'), 'cell' => function ($user) { return '' . ''; }, ], ], $users, ) ?> endSection() ?>