shareit/app/User.php

52 lines
994 B
PHP
Raw Normal View History

2018-09-07 23:12:34 +00:00
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Support\Facades\Request;
2018-09-07 23:12:34 +00:00
2018-09-17 14:06:35 +00:00
class User extends Authenticatable implements MustVerifyEmail
2018-09-07 23:12:34 +00:00
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
2018-09-11 23:48:09 +00:00
public function products()
{
return $this->hasMany(Product::class);
}
public function items()
{
return $this->belongsToMany(Item::class);
}
/**
* Return the logged in user
*
* @return \App\User
*/
public static function loggedIn()
{
return (new static)->findOrFail(\Auth::id());
}
2018-09-07 23:12:34 +00:00
}