Answers for "foreach get auth::user id in controller 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
0

find auth laravel

use Auth;

//find auth
  function __construct()
    {
      $this->middleware('auth');      
    }
//end find auth
Posted by: Guest on November-22-2021

Code answers related to "foreach get auth::user id in controller laravel"

Browse Popular Code Answers by Language