FatalThrowableError in RegisterController.php line 104:
Class 'Flash' not found
これは上記のエラーはClass Flash
が含まれていないと言っていますが、私は間違っていると思います。Laravel 5.3クラスのFlashが見つかりません
namespace App\Http\Controllers\Auth;
use Flash;
FatalThrowableError in RegisterController.php line 104:
Class 'Flash' not found
これは上記のエラーはClass Flash
が含まれていないと言っていますが、私は間違っていると思います。Laravel 5.3クラスのFlashが見つかりません
namespace App\Http\Controllers\Auth;
use Flash;
あなたcontroller
する必要があります: -
namespace App\Http\Controllers; // change here
use App\Flash; // rewrite this line
use App\Http\Controllers\Controller; // add this line
class RegisterController extends Controller
{
// stuff here
}
https://laravel.com/docs/5.3/controllers
あなたFlash
Model
は次のようになります -
namespace App;
use Illuminate\Database\Eloquent\Model;
class Flash extends Model
{
//
}
ヘルプのThx 名前空間を変更した場合、私の認証が壊れることはありませんか? –
認証に外部ライブラリを使用しましたか? laravel認証については、次のリンクを確認してください: - https://laravel.com/docs/5.3/authentication –
あなたのFlashクラスはどこにありますか? –
Flashがあなたのモデルクラスですか? –
またはlaracasts/flashパッケージをインストールしましたか? –