To restrict the display of resources in a Filament resource based on the user_id of the authenticated user, you can modify the getEloquentQuery() method in your Filament resource class. Hereβs how you can do it:
public static function getEloquentQuery(): Builder{
return parent::getEloquentQuery()->where('user_id',auth()->id());
}
Top comments (0)