::クラスってどういう意味ですか?
'users' => [
'driver' => 'eloquent',
'model' =>
長時間検索しても、どのようなキーワードで検索すればよいのかわかりません。 。
ディスカッションに返信(解決策)
アプリユーザー:: class returns クラス名 "AppUser"
ありがとうございます!返されたクラス名の 4 つの単語に基づいて検索しました。
PHP5.5tの機能、完全なクラス名を取得
use Some\Deeply\Nested\Namespace\FooBar; // does not work, because this will try to use the global `FooBar` class $reflection = new ReflectionClass('FooBar'); echo FooBar::class;