Last active
August 15, 2016 02:43
-
-
Save hernandev/7a6e7c8db2a150d7556999423d8d5b22 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 | |
namespace App; | |
use Illuminate\Database\Eloquent\Model; | |
class MeuModel extends Model | |
{ | |
protected $dates = [ | |
'expires_at', | |
'outro_campo_do_tipo_timestamp', | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment