Apply fixes from StyleCI

This commit is contained in:
Manish Verma
2016-12-13 13:14:54 +00:00
committed by StyleCI Bot
parent 857d3004eb
commit 88f3df2180
161 changed files with 4729 additions and 3879 deletions

View File

@@ -2,27 +2,28 @@
namespace App\Http\ViewComposers;
use Illuminate\View\View;
use Auth;
use Illuminate\View\View;
class AuthUser {
class AuthUser
{
protected $user;
public function __construct() {
public function __construct()
{
$this->user = Auth::user();
}
public function compose(View $view) {
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,
'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,
]);
}
}