📜  “修补程序”未定义 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:54.592000             🧑  作者: Mango

代码示例1
Step 1 : Install tinker
composer require laravel/tinker

Step 2 : Add provider class name into /config/app.php file
If you open the config/app.php file included with Laravel, you will see a providers array.
providers' => [     .
                    .
                    App\Providers\CountdownTimersServiceProvider::class,
                    Laravel\Tinker\TinkerServiceProvider::class

],