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.

scaffold laravel php エラーがでる件

Posted at
composer require laralib/l5scaffold --dev

を行うと、could not findなどいろんなエラーがでてくる。さまざまな解決サイトがあり試したが、変わらず。
下記サイトで解決。
https://awesome-linus.com/2019/05/17/laravel-l5scaffold-install-how-to-use/

もともとapp.phpでproviderに入れろと言われていたが、

// 開発環境でのみ必要なプロバイダー
    'dev-providers' => [
        Laralib\L5scaffold\GeneratorsServiceProvider::class,
    ],

という形でいれる。理由は上記サイトを参照。

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?