Skip to content

Instantly share code, notes, and snippets.

@studio-fars-company
Created June 20, 2018 09:30
Show Gist options
  • Save studio-fars-company/5b231eba779f89bbc3f5770fa3289499 to your computer and use it in GitHub Desktop.
Save studio-fars-company/5b231eba779f89bbc3f5770fa3289499 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Laravel\Cashier\Billable;
class User extends Authenticatable
{
use Notifiable;
use Billable;
/**
* 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',
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment