Override table view to list a subset or scoped set of records

I have one resources that has many thousands of records for logs that I want to make aviable via multiple resource objects tailored for each type. How do I override the query on the list or table view to load that resource with a specific subset? On the model, I've added a scope for each type
public function scopeServerEvents($query){}
public function scopeUserEvents($query){}
etc..
public function scopeServerEvents($query){}
public function scopeUserEvents($query){}
etc..
1 Reply
islandnuge
islandnugeOP3w ago
Figured it out - add and override the following function to your Resource
public static function getEloquentQuery(): Builder
{
return parent::getEloquentQuery()->>ServerEvents();
}
public static function getEloquentQuery(): Builder
{
return parent::getEloquentQuery()->>ServerEvents();
}

Did you find this page helpful?