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]);
        });


this will call before we initialized on livewire component .

I want to called method after table initialize
public function table(){
}


/// do something here , calling some method here.

on view
$this->table
Was this page helpful?