Bulkx extends Component
Table of Contents
- $actions : array<string|int, mixed>
- Key value pair for action and lable All actions has to be POST
- $recordTableId : string
- Id of record table
- $route : string
- Route prefix
- __construct() : void
- Create a new component instance.
- render() : View|string
- Get the view / contents that represent the component.
Properties
$actions
Key value pair for action and lable All actions has to be POST
public
array<string|int, mixed>
$actions
$recordTableId
Id of record table
public
string
$recordTableId
$route
Route prefix
public
string
$route
Methods
__construct()
Create a new component instance.
public
__construct(string $route, array<string|int, mixed> $actions[, string $recordTableId = 'records-table' ]) : void
Parameters
- $route : string
- $actions : array<string|int, mixed>
- $recordTableId : string = 'records-table'
Return values
void —render()
Get the view / contents that represent the component.
public
render() : View|string