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.

DeleteCompany.php 321B

1234567891011121314151617
  1. <?php
  2. namespace App\Actions\FilamentCompanies;
  3. use App\Models\Company;
  4. use Wallo\FilamentCompanies\Contracts\DeletesCompanies;
  5. class DeleteCompany implements DeletesCompanies
  6. {
  7. /**
  8. * Delete the given company.
  9. */
  10. public function delete(Company $company): void
  11. {
  12. $company->purge();
  13. }
  14. }