Files
faveo/app/Http/ViewComposers/AuthUser.php
Manish Verma 22d3bb4036 Installer updates
Added probe.php
Added new installer views and controllers
Updated AuthController
Updated Middlewares
Updated Commands for installation process
2018-08-07 13:45:46 +05:30

30 lines
720 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,
]);
}
}