mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-16 10:20:43 +01:00
12 lines
232 B
PHP
12 lines
232 B
PHP
|
<?php
|
||
|
|
||
|
use Modules\CombinazioniArticoli\Combinazione;
|
||
|
|
||
|
include_once __DIR__.'/../../core.php';
|
||
|
|
||
|
if (!empty($id_record)) {
|
||
|
$combinazione = Combinazione::withTrashed()->find($id_record);
|
||
|
|
||
|
$record = $combinazione->toArray();
|
||
|
}
|