私はlaravel 5プロジェクトに取り組んでおり、htmlでAuthを使用する際に問題があります。
まず、コードを表示します
Routes.php
// Router for login
Route::get('/login', ['as' => 'login_path', 'uses' => 'LoginController@getLogin']);
Route::post('/login', ['as' => 'post_login_path', 'uses' => 'LoginController@postLogin']);
// Router for dashboard
Route::get('dashboard', 'DashboardController@index');
mysite/login に移動すると、入力を入力して投稿するとログイン フォームが表示され、LoginController@postLogin に移動します。
ログインコントローラ
public function getLogin()
{
return view("login.login");
}
public function postLogin(Request $request)
{
$gebruikersnaam = $request->gebruikersnaam;
$wachtwoord = $request->wachtwoord;
if (Auth::attempt(['gebruikersnaam' => $gebruikersnaam, 'password' => $wachtwoord]))
{
//return JsonHandler::createJsonResponse("Successvol ingelogd redirect...", "/dashboard", "success");
return redirect('/dashboard');
//return redirect('home');
}
else {
return "fail";
}
//dd(Request::input());
//return $wachtwoord;
}
ユーザーモデル
<?php
namespace App;
use Illuminate\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
class User extends Model implements AuthenticatableContract, CanResetPasswordContract
{
use Authenticatable, CanResetPassword;
// For custom password field in user table
public function getAuthPassword()
{
return $this->wachtwoord;
}
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'users';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'gebruikersnaam',
'wachtwoord'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
//protected $hidden = ['gebruikersnaam', 'wachtwoord'];
}
認証試行が true の場合、ダッシュボードに移動します。しかし、ビューで認証ファスケードを使用できません。
ダッシュボード ビュー
<p>Welcome {{Auth::user()->gebruikersnaam}}</p>
次のエラーが表示されます。
非オブジェクトのプロパティを取得しようとしています (ビュー: C:\xampp\htdocs\laravel5\resources\views\dashboard\master\dashboard-master.blade.php
)
ビューで認証を使用するにはどうすればよいですか? そして、これはロギングの正しい方法ですか