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.

ManageCompany.php 336B

123456789101112131415161718
  1. <?php
  2. namespace App\Filament\Company\Pages;
  3. use Wallo\FilamentCompanies\Pages\Company\CompanySettings;
  4. class ManageCompany extends CompanySettings
  5. {
  6. public static function getLabel(): string
  7. {
  8. return 'Manage Company';
  9. }
  10. public static function getSlug(): string
  11. {
  12. return 'manage-company';
  13. }
  14. }