Update InventarioPrendaResource.php
This commit is contained in:
@@ -88,13 +88,13 @@ class InventarioPrendaResource extends Resource
|
|||||||
|
|
||||||
Select::make('color_id')
|
Select::make('color_id')
|
||||||
->label('Color')
|
->label('Color')
|
||||||
->options(fn () => \App\Models\Color::pluck('nombre', 'id')->toArray())
|
->options(fn () => \App\Models\Color::pluck('name', 'id')->toArray())
|
||||||
->searchable()
|
->searchable()
|
||||||
->nullable(),
|
->nullable(),
|
||||||
|
|
||||||
Select::make('size_id')
|
Select::make('size_id')
|
||||||
->label('Talla')
|
->label('Talla')
|
||||||
->options(fn () => \App\Models\Size::pluck('nombre', 'id')->toArray())
|
->options(fn () => \App\Models\Size::pluck('name', 'id')->toArray())
|
||||||
->searchable()
|
->searchable()
|
||||||
->nullable(),
|
->nullable(),
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user