
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
30 lines
689 B
PHP
30 lines
689 B
PHP
<?php
|
|
|
|
namespace App\Http\ViewComposers;
|
|
|
|
use Auth;
|
|
use Illuminate\View\View;
|
|
|
|
class AuthUser
|
|
{
|
|
protected $user;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->user = Auth::user();
|
|
}
|
|
|
|
public function compose(View $view)
|
|
{
|
|
$view->with([
|
|
'auth_user_role' => $this->user->role,
|
|
'auth_user_id' => $this->user->id,
|
|
'auth_user_profile_pic' => $this->user->profile_pic,
|
|
'auth_name' => $this->user->name(),
|
|
'auth_user_active' => $this->user->active,
|
|
'auth_user_primary_dept' => $this->user->primary_dept,
|
|
'auth_user_assign_group' => $this->user->assign_group,
|
|
]);
|
|
}
|
|
}
|