Tinker with Laravel 8 中必须 运行 的 CRUD 命令是什么
What are the CRUD Commands that have to be run in Tinker with Laravel 8
当我 运行 Laravel 8 中已知的 tinder CRUD 命令时,它们不起作用
我 运行 是创建和查找命令
$user = new App\User;
App\User::all();
但它们不起作用,我知道在 Laravel 8 中,模型文件位于此路径 App\Models\ 'File' 中,我尝试修改创建代码$user = new App\User;
到 $user = new App\Models\User;
但这也不起作用,我得到的错误是
PHP Fatal error: Class 'App/Models/User' not found in Psy Shell code on line 1
请问 Laravel 8
中 tinker 有哪些变化
注意:我也尝试过清除缓存和清除作曲家,但都没有解决问题。
在Laravel 8中,你应该这样做:
$user = new \App\Models\User;
$users = \App\Models\User::all();
或以上控制器class声明,做
use App\Models\User;
那么在方法中,你可以做
$user = new User;
$users = User::all();
当我 运行 Laravel 8 中已知的 tinder CRUD 命令时,它们不起作用
我 运行 是创建和查找命令
$user = new App\User;
App\User::all();
但它们不起作用,我知道在 Laravel 8 中,模型文件位于此路径 App\Models\ 'File' 中,我尝试修改创建代码$user = new App\User;
到 $user = new App\Models\User;
但这也不起作用,我得到的错误是
PHP Fatal error: Class 'App/Models/User' not found in Psy Shell code on line 1
请问 Laravel 8
中 tinker 有哪些变化注意:我也尝试过清除缓存和清除作曲家,但都没有解决问题。
在Laravel 8中,你应该这样做:
$user = new \App\Models\User;
$users = \App\Models\User::all();
或以上控制器class声明,做
use App\Models\User;
那么在方法中,你可以做
$user = new User;
$users = User::all();