0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Laravel6|Class 'App\Http\Controllers\Auth' not found

Last updated at Posted at 2021-12-09

事象:下記ログインユーザー取得時にエラー

controller.php
$user=Auth::user();

結論:以下をコントローラーに追加する

controller.php
use Illuminate\Support\Facades\Auth;
  バージョン
Laravel 6.20.37
MySQL 5.7.34
PHP 7.4.21
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?