| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 | 
							- <?php
 - 
 - namespace App\Filament\Forms\Components;
 - 
 - use Closure;
 - use Filament\Forms\Components\FileUpload;
 - use Filament\Forms\Components\Group;
 - use Filament\Forms\Components\Section;
 - use Filament\Forms\Components\Split;
 - use Filament\Forms\Components\TextInput;
 - 
 - class DocumentHeaderSection extends Section
 - {
 -     protected string | Closure | null $defaultHeader = null;
 - 
 -     protected string | Closure | null $defaultSubheader = null;
 - 
 -     public function defaultHeader(string | Closure | null $header): static
 -     {
 -         $this->defaultHeader = $header;
 - 
 -         return $this;
 -     }
 - 
 -     public function defaultSubheader(string | Closure | null $subheader): static
 -     {
 -         $this->defaultSubheader = $subheader;
 - 
 -         return $this;
 -     }
 - 
 -     protected function setUp(): void
 -     {
 -         parent::setUp();
 - 
 -         $this->collapsible();
 -         $this->collapsed();
 - 
 -         $this->schema([
 -             Split::make([
 -                 Group::make([
 -                     FileUpload::make('logo')
 -                         ->maxSize(1024)
 -                         ->localizeLabel()
 -                         ->openable()
 -                         ->directory('logos/document')
 -                         ->image()
 -                         ->imageCropAspectRatio('3:2')
 -                         ->panelAspectRatio('3:2')
 -                         ->panelLayout('compact')
 -                         ->extraAttributes([
 -                             'class' => 'es-file-upload document-logo',
 -                         ])
 -                         ->loadingIndicatorPosition('left')
 -                         ->removeUploadedFileButtonPosition('right'),
 -                 ]),
 -                 Group::make([
 -                     TextInput::make('header')
 -                         ->default(fn () => $this->getDefaultHeader()),
 -                     TextInput::make('subheader')
 -                         ->default(fn () => $this->getDefaultSubheader()),
 -                 ])->grow(true),
 -             ])->from('md'),
 -         ]);
 -     }
 - 
 -     public function getDefaultHeader(): ?string
 -     {
 -         return $this->evaluate($this->defaultHeader);
 -     }
 - 
 -     public function getDefaultSubheader(): ?string
 -     {
 -         return $this->evaluate($this->defaultSubheader);
 -     }
 - }
 
 
  |