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([
]);
}
}