Laravel Filament: get resource table data by authenticated id
JohnDivam

JohnDivam @johndivam

About: Focus on delivering high-quality solutions. #Laravel . Wye Team

Joined:
Jul 11, 2023

Laravel Filament: get resource table data by authenticated id

Publish Date: Jul 2 '24
3 0

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());
    }
Enter fullscreen mode Exit fullscreen mode

Comments 0 total

    Add comment