Created
February 5, 2020 04:25
-
-
Save zhanang19/e6bfe9c9deca399db06dc427a8655a9d to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Gazeboin\Event\Domain\Entities; | |
use Illuminate\Database\Eloquent\Model; | |
class EventEntity extends Model | |
{ | |
protected $table = 'events'; | |
protected $guarded = ['id']; | |
protected $hidden = ['updated_at', 'deleted_at']; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment