Skip to content

Instantly share code, notes, and snippets.

@thannaske
Created May 18, 2018 18:10
Show Gist options
  • Save thannaske/33448271d38f6f16602e4d99539de0b7 to your computer and use it in GitHub Desktop.
Save thannaske/33448271d38f6f16602e4d99539de0b7 to your computer and use it in GitHub Desktop.
<?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