Skip to content

Instantly share code, notes, and snippets.

class ShipmentManager extends StockManager implements Receivable
{
use EmployeeTrait;
public function receive(ProductDTO $product)
{
$qty = $product->getQuantity();
$stock = $this->stockRepository
->skipPresenter(true)
->firstOrCreate([