Created
May 18, 2018 18:10
-
-
Save thannaske/33448271d38f6f16602e4d99539de0b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// [...] | |
/** | |
* The attributes that are mass assignable. | |
* | |
* @var array | |
*/ | |
protected $fillable = [ | |
'name', 'email', 'password', 'confirmation_token' | |
]; | |
/** | |
* The attributes that should be casted to a Carbon instance. | |
* | |
* @var array | |
*/ | |
protected $dates = [ | |
'created_at', 'updated_at', 'confirmed_at' | |
]; | |
// [...] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment