* View composers * Saving client and contacts * saving client and contacts * update client job * unique emails * fix for tests
19 lines
296 B
PHP
19 lines
296 B
PHP
<?php
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
|
|
trait UserSessionAttributes
|
|
{
|
|
|
|
public function setCurrentCompanyId($value) : void
|
|
{
|
|
session(['current_company_id' => $value]);
|
|
}
|
|
|
|
public function getCurrentCompanyId() : int
|
|
{
|
|
return session('current_company_id');
|
|
}
|
|
|
|
}
|