ViewStudent.php 426 B

123456789101112131415161718
  1. <?php
  2. namespace App\Filament\Resources\StudentResource\Pages;
  3. use App\Filament\Resources\StudentResource;
  4. use Filament\Resources\Pages\ViewRecord;
  5. class ViewStudent extends ViewRecord
  6. {
  7. protected static string $resource = StudentResource::class;
  8. protected string $view = 'filament.resources.student-resource.pages.view-student';
  9. public function getTitle(): string
  10. {
  11. return '学生详情';
  12. }
  13. }