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.

CreateDocument.php 451B

1234567891011121314151617
  1. <?php
  2. namespace App\Filament\Company\Resources\Accounting\DocumentResource\Pages;
  3. use App\Filament\Company\Resources\Accounting\DocumentResource;
  4. use Filament\Resources\Pages\CreateRecord;
  5. use Filament\Support\Enums\MaxWidth;
  6. class CreateDocument extends CreateRecord
  7. {
  8. protected static string $resource = DocumentResource::class;
  9. public function getMaxContentWidth(): MaxWidth | string | null
  10. {
  11. return MaxWidth::Full;
  12. }
  13. }