1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-14 18:40:36 +01:00
2019-07-19 16:51:52 +02:00

19 lines
422 B
PHP

<?php
namespace Modules\Articoli\API\v1;
use API\Interfaces\CreateInterface;
use API\Resource;
use Modules\Articoli\Articolo;
class Movimenti extends Resource implements CreateInterface
{
public function create($request)
{
$data = $request['data'];
$articolo = Articolo::find($data['id_articolo']);
$articolo->movimenta($data['qta'], $data['descrizione'], $data['data'], true);
}
}