mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
348890e8fa
* View composers * Saving client and contacts * saving client and contacts * update client job * unique emails
42 lines
871 B
PHP
42 lines
871 B
PHP
<?php
|
|
|
|
namespace App\Http\ViewComposers;
|
|
|
|
use App\Utils\Traits\UserSessionAttributes;
|
|
use Illuminate\View\View;
|
|
|
|
class HeaderComposer
|
|
{
|
|
use UserSessionAttributes;
|
|
|
|
/**
|
|
* Bind data to the view.
|
|
*
|
|
* @param View $view
|
|
* @return void
|
|
*/
|
|
public function compose(View $view)
|
|
{
|
|
$view->with('header', $this->headerData());
|
|
}
|
|
|
|
private function headerData()
|
|
{
|
|
if(!auth()->user())
|
|
return [];
|
|
|
|
//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;
|
|
}
|
|
|
|
} |