This commit is contained in:
Lizandro Guarnizo
2026-01-29 20:42:42 -05:00
parent 02490b3d39
commit bbc332b03e
2 changed files with 7 additions and 1 deletions
@@ -13,7 +13,8 @@ class ListOjalPresillas extends ListRecords
protected function getHeaderActions(): array
{
return [
Actions\CreateAction::make(),
Actions\CreateAction::make()
->label('Crear'),
];
}
}
+5
View File
@@ -48,6 +48,11 @@ class OrdenProduccion extends Model
return $this->hasMany(\App\Models\Confeccion::class);
}
public function confecciones()
{
return $this->confeccions();
}
public function tintorerias()
{
return $this->hasMany(\App\Models\Tintoreria::class);