can we hook configureUsing after render .

Is there any way we can use configureUsing after render table for example
Table::configureUsing(function (Table $table){
$table->paginated([5, 10, 25, 50]);
});
Table::configureUsing(function (Table $table){
$table->paginated([5, 10, 25, 50]);
});
this will call before we initialized on livewire component . I want to called method after table initialize
public function table(){
}
public function table(){
}
/// do something here , calling some method here. on view
$this->table
$this->table
1 Reply
Dennis Koch
Dennis Koch4w ago
No, it's not meant to be used like this. Maybe explain your usecase

Did you find this page helpful?