1.2 - Sketching out the First Test

This commit is contained in:
Adam Wathan
2016-11-01 14:22:29 -04:00
commit e257fdd512
80 changed files with 10725 additions and 0 deletions

29
app/User.php Normal file
View File

@@ -0,0 +1,29 @@
<?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',
];
}