© 2026 Hedgehog Software, LLC

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

custom page with table

hello everyone, i made a custom page for my model and i want to display a table for this, here is my code:
class StudentReport extends Page
{
    protected static ?string $model = Student::class;

    protected static ?string $navigationIcon = 'heroicon-o-document-text';

    protected static string $view = 'filament.pages.student-report';

    protected static ?string $navigationGroup = 'Reports';

    protected static ?int $navigationSort = 3;

    public static function table(Table $table): Table
    {
        return $table
            ->columns([
                
            ]);
    }


}
class StudentReport extends Page
{
    protected static ?string $model = Student::class;

    protected static ?string $navigationIcon = 'heroicon-o-document-text';

    protected static string $view = 'filament.pages.student-report';

    protected static ?string $navigationGroup = 'Reports';

    protected static ?int $navigationSort = 3;

    public static function table(Table $table): Table
    {
        return $table
            ->columns([
                
            ]);
    }


}


unfortunately it doesnt display on my page.
is there a way to display a table for my model?
thanks
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

Custom Page With Table
FilamentFFilament / ❓┊help
2y ago
Custom page/table
FilamentFFilament / ❓┊help
3mo ago
V4 Custom Page with Custom Data Table
FilamentFFilament / ❓┊help
8mo ago
Custom page with table and filters
FilamentFFilament / ❓┊help
16mo ago