Answers for "how to get auth user details in constructor in laravel"

PHP
1

laravel get auth user in constructor

<?php

namespace App\Http\Controllers;

use App\User;
use Illuminate\Support\Facades\Auth;
use App\Http\Controllers\Controller;

class ProjectController extends Controller
{
    /**
     * All of the current user's projects.
     */
    protected $projects;

    /**
     * Create a new controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        $this->middleware(function ($request, $next) {
            $this->projects = Auth::user()->projects;

            return $next($request);
        });
    }
}
Posted by: Guest on December-07-2020
4

get user auth in laravel

Auth::login($user);
Posted by: Guest on April-21-2020

Code answers related to "how to get auth user details in constructor in laravel"

Browse Popular Code Answers by Language