/** * Handle the command. * * @param CreateaCategoriaTerapeuticaCommand $command * @return void */ public function handle(CreateProdottoCommand $command) { $active = $command->active === 'on' ? 1 : 0; $prodotto_object = Prodotti::make($command->nome, $command->formulazioni, $command->principio_attivo_id, $command->fascia_id, $command->regime_dispensazione, $command->unita, $command->validita_mesi, $command->categoria_terapeutica_id, $active); $prodotto = $this->repo->save($prodotto_object); $prodotto->sezioni()->sync($command->sezioni); // $prodotto->paesi()->sync($command->paesi); $this->caricaFogliettoIllustrativo($prodotto, $command->foglietto_illustrativo); $this->caricaSchedaTecnica($prodotto, $command->scheda_tecnica); Event::fire(new ProdottoWasCreated($prodotto)); return $prodotto; }
public function getById($id) { return Prodotti::where('id', $id)->with('sezioni', 'paesi', 'categoria_terapeutica', 'principio_attivo', 'fascia')->first(); }