akaunting/app/Jobs/Auth/CreateRole.php
2021-09-07 10:33:34 +03:00

26 lines
617 B
PHP

<?php
namespace App\Jobs\Auth;
use App\Abstracts\Job;
use App\Interfaces\Job\HasOwner;
use App\Interfaces\Job\HasSource;
use App\Interfaces\Job\ShouldCreate;
use App\Models\Auth\Role;
class CreateRole extends Job implements HasOwner, HasSource, ShouldCreate
{
public function handle(): Role
{
\DB::transaction(function () {
$this->model = Role::create($this->request->input());
if ($this->request->has('permissions')) {
$this->model->permissions()->attach($this->request->get('permissions'));
}
});
return $this->model;
}
}