You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I assign an id to a table. I am creating a table like return view('admin.booking.list', [ 'table' => \App::make('table')->create($this->getBookingManager()->getAllByAdmin()) ]);
The text was updated successfully, but these errors were encountered:
There's currently no way to do this short of creating a custom view and hard-coding the ID, like so:
$table = Table::create();
$table->setView('tables/custom_table');
// views/tables/custom_table.blade.php:
<table class="{{ $classor 'table' }}" id="assigned_id">
// ...copy the rest of the file from the default view
I will leave this issue open so that ID setting can be included in a future release.
How can I assign an id to a table. I am creating a table like
return view('admin.booking.list', [ 'table' => \App::make('table')->create($this->getBookingManager()->getAllByAdmin()) ]);
The text was updated successfully, but these errors were encountered: