z-song / demo.laravel-admin.org

Source code of official http://demo.laravel-admin.org website.
507 stars 250 forks source link

$user = Admin::user(); Does not work #45

Open ghost opened 5 years ago

ghost commented 5 years ago

I has a controller but when i get a user does not work:

$user = Admin::user();

error: Class 'App\Admin\Controllers\Admin' not found why ?

YuCoLabKenny commented 5 years ago

use Encore\Admin\Facades\Admin;

$user = Admin::user()->name;