2017-03-14から1日間の記事一覧

Laravel5.4: Form作成(illuminate/htmlではなくて、laravelcollective/htmlで)

Why? フォームヘルパーを使うと、Form作るのが楽になる laravelcollective/htmlパッケージをプロジェクトに導入しなくてはならない NG: illuminate/html メンテ止まってる OK: laravelcollective/html メンテされてる Laravel Collective は、Laravel本体か…

Laravel 5.4: Non-static method Illuminate\Http\Request::all() should not be called statically のエラー

What? Laravel 5.4 で Non-static method Illuminate\Http\Request::all() should not be called statically のエラーがでる Why? Request ファサードまで、リクエストが届いていない config/app.php に以下のエイリアスが書いてあるので、Request を直接呼…

Laravel 5.4: Fatal error: Uncaught Error: Class 'Illuminate\Foundation\Application' のエラー

What? Fatal error: Uncaught Error: Class 'Illuminate\Foundation\Application' のエラーがでる Why? Composerがおかしくなってて、ライブラリが見つけられない How to? ライブラリの Install しなおし & autoload の dump ファイルの更新 $ composer inst…