Skip to content

Instantly share code, notes, and snippets.

@maxheckel
Created March 11, 2017 16:50
Show Gist options
  • Select an option

  • Save maxheckel/c4c2adf6be8f2ec97133e00837a6d90f to your computer and use it in GitHub Desktop.

Select an option

Save maxheckel/c4c2adf6be8f2ec97133e00837a6d90f to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
//
}
class CartItem extends Model
{
//
}
class Cart extends Model
{
//
}
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',
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment