You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Profile.php 531B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Filament\User\Clusters\Account\Pages;
  3. use App\Filament\User\Clusters\Account;
  4. use Filament\Support\Enums\MaxWidth;
  5. use Wallo\FilamentCompanies\Pages\User\Profile as BaseProfile;
  6. class Profile extends BaseProfile
  7. {
  8. protected static ?string $cluster = Account::class;
  9. protected static bool $shouldRegisterNavigation = true;
  10. protected static ?int $navigationSort = 10;
  11. public function getMaxContentWidth(): MaxWidth | string | null
  12. {
  13. return MaxWidth::ScreenTwoExtraLarge;
  14. }
  15. }