mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
32 lines
622 B
PHP
32 lines
622 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Utils\Traits;
|
||
|
use Illuminate\Support\Facades\Auth;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Class MakesHash
|
||
|
* @package App\Utils\Traits
|
||
|
*/
|
||
|
trait MakesHeaderData
|
||
|
{
|
||
|
|
||
|
use UserSessionAttributes;
|
||
|
|
||
|
public function headerData()
|
||
|
{
|
||
|
//companies
|
||
|
$companies = Auth::user()->companies;
|
||
|
|
||
|
$data['current_company'] = $companies->first(function ($company){
|
||
|
return $company->id == $this->getCurrentCompanyId();
|
||
|
});
|
||
|
|
||
|
$data['companies'] = $companies->reject(function ($company){
|
||
|
return $company->id == $this->getCurrentCompanyId();
|
||
|
});
|
||
|
|
||
|
return $data;
|
||
|
}
|
||
|
|
||
|
}
|