38 lines
630 B
PHP
38 lines
630 B
PHP
<?php
|
|
|
|
namespace App\Jobs\Common;
|
|
|
|
use App\Abstracts\Job;
|
|
use App\Models\Common\Report;
|
|
|
|
class CreateReport extends Job
|
|
{
|
|
protected $report;
|
|
|
|
protected $request;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @param $request
|
|
*/
|
|
public function __construct($request)
|
|
{
|
|
$this->request = $this->getRequestInstance($request);
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return Report
|
|
*/
|
|
public function handle()
|
|
{
|
|
\DB::transaction(function () {
|
|
$this->report = Report::create($this->request->all());
|
|
});
|
|
|
|
return $this->report;
|
|
}
|
|
}
|