无法从我的User.php文件返回视图。为什么找不到视图? 我使用默认的User.php文件,最后在其中添加几行代码以获取视图。我收到错误-未找到视图。
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Support\Facades\Auth;
use Request;
class User extends Authenticatable
{
use Notifiable;
protected $fillable = [
'name', 'email', 'password',
];
protected $hidden = [
'password', 'remember_token',
];
protected $casts = [
'email_verified_at' => 'datetime',
];
}
if (Auth::check())
{
return view('example-component');
}
答案 0 :(得分:0)
这不是模型的目的。我认为您通常应该退一步学习PHP,因为这不是有效的语法。
如果要呈现视图,则可以使用web.php将操作“重定向”到Controller,然后将它们从一个函数中的Controller实施条件,然后返回适当的视图。