Skip to content

Instantly share code, notes, and snippets.

@Brandonxy
Created December 10, 2017 23:51
Show Gist options
  • Save Brandonxy/4e44c98e476f315cdc628f1e4982561b to your computer and use it in GitHub Desktop.
Save Brandonxy/4e44c98e476f315cdc628f1e4982561b to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
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',
];
public function posts()
{
return $this->hasMany(Post::class);
}
public function comments()
{
return $this->hasMany(Comment::class);
}
public function likes()
{
return $this->hasMany(Like::class);
}
public function followers()
{
return $this->belongsToMany(User::class, 'followers', 'user_id', 'follower_id');
}
public function following()
{
return $this->belongsToMany(User::class, 'followers', 'follower_id', 'user_id');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment