PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
table
/
helpers
<?php if (!function_exists('table_checkbox')) { /** * @param int $id * @return string * @throws Throwable */ function table_checkbox($id): string { return view('core/table::partials.checkbox', compact('id'))->render(); } } if (!function_exists('table_actions')) { /** * @param string $edit * @param string $delete * @param \Botble\Base\Models\BaseModel $item * @param string $extra * @return string * @throws Throwable */ function table_actions($edit, $delete, $item, $extra = null): string { return view('core/table::partials.actions', compact('edit', 'delete', 'item', 'extra'))->render(); } }
[-] constants.php
[edit]
[+]
..
[-] common.php
[edit]