whoami7 - Manager
:
/
home
/
qbizpnmr
/
test.qbiztax.com
/
app
/
Jobs
/
Common
/
Upload File:
files >> //home/qbizpnmr/test.qbiztax.com/app/Jobs/Common/CreateItem.php
<?php namespace App\Jobs\Common; use App\Abstracts\Job; use App\Events\Common\ItemCreated; use App\Events\Common\ItemCreating; use App\Interfaces\Job\HasOwner; use App\Interfaces\Job\HasSource; use App\Interfaces\Job\ShouldCreate; use App\Jobs\Common\CreateItemTaxes; use App\Models\Common\Item; class CreateItem extends Job implements HasOwner, HasSource, ShouldCreate { public function handle(): Item { event(new ItemCreating($this->request)); \DB::transaction(function () { $this->model = Item::create($this->request->all()); // Upload picture if ($this->request->file('picture')) { $media = $this->getMedia($this->request->file('picture'), 'items'); $this->model->attachMedia($media, 'picture'); } $this->dispatch(new CreateItemTaxes($this->model, $this->request)); }); event(new ItemCreated($this->model, $this->request)); return $this->model; } }
Copyright ©2021 || Defacer Indonesia