mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
d430600e1e
* Fixes for datatables * Implement a BaseModel * Working on reusable header data model * Working on adding session variables * Clean up header data * Random Data Seeder * working on searching datatables across relationships. * Working on transforming primary keys between client and server facinglogic * Updated assets
51 lines
972 B
PHP
51 lines
972 B
PHP
<?php
|
|
|
|
namespace App\Jobs\Company;
|
|
|
|
use App\Events\UserSignedUp;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Http\Request;
|
|
use App\Models\Company;
|
|
|
|
class CreateCompany
|
|
{
|
|
use MakesHash;
|
|
use Dispatchable;
|
|
|
|
protected $request;
|
|
|
|
protected $account;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
|
|
public function __construct(Request $request, $account = false)
|
|
{
|
|
$this->request = $request;
|
|
$this->account = $account;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
|
|
$company = new Company();
|
|
$company->name = $this->request->first_name . ' ' . $this->request->last_name;
|
|
$company->account_id = $this->account->id;
|
|
$company->company_key = $this->createHash();
|
|
$company->ip = $this->request->ip();
|
|
$company->save();
|
|
|
|
|
|
return $company;
|
|
}
|
|
}
|