Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 29, 2018 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/6644854d0b813245fa99fbcdfcb549a3 to your computer and use it in GitHub Desktop.
Save uno-de-piera/6644854d0b813245fa99fbcdfcb549a3 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
/**
* App\User
*
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @mixin \Eloquent
*/
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'username', 'email', 'password',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
public function newNotification () {
$this->notify(new Notification);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment