divStrong
Filament 3 Tabs Serving Livewire Component with $form
Tabs\Tab::make('Proofs')
->icon('heroicon-o-document-magnifying-glass')
->schema([
$form->model && (is_array($form->model) || is_object($form->model)) ?
Livewire::make(OrderProofs::class, ['orderId' => $form->model->id])->key('order-proofs')->extraAttributes(['wire:ignore' => true]) :
Placeholder::make('notes_placeholder')
->label('No proofs yet'),
]),
6 replies
Add Edit Icon To Repeater
public static function getTableRepeater(){
return TableRepeater::make('items')
->addable(false)
->minItems(0)
->defaultItems(0)
->headers([
Header::make('name')->label('Item Name'),
Header::make('colors')->label('Color(s)'),
Header::make('size')->label('Size'),
Header::make('qty')->label('Quantity'),
Header::make('price')->label('Price')
])
->schema([
Placeholder::make('name_label')
->disableLabel()
->content(fn ($get) =>
// separate with new lines
new HtmlString('<strong>'.static::getItemName($get('name')).'</strong>'.
'<br>'.static::getLocation($get))
),
12 replies