DEV Community

JohnDivam
JohnDivam

Posted on • Edited on

3

Laravel Filament: get resource table data by authenticated id

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

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more