© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
2 replies
negro

display data according related relationships

I have 02 two models(sequence and academic) related with one to many relationship. I wish to display sequence list according academic .
class Sequence extends Model
{
use HasFactory, SoftDeletes;

protected $fillable = [
'academic_id',
'name',
'description'
];

protected $casts = [
'created_at' => 'datetime:Y-m-d',
];

public function academic() {
return $this->belongsTo(Academic::class);
}
}

How to implement that ???
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Export action to display data from relationships
FilamentFFilament / ❓┊help
2y ago
How to properly display data from table relationships?
FilamentFFilament / ❓┊help
2y ago
How to Use mutateFormDataBeforeFill or mutateFormDataBeforeSave for Related Data in Relationships
FilamentFFilament / ❓┊help
2y ago
How to Display Related Model Data on the Edit Page?
FilamentFFilament / ❓┊help
2y ago