Skip to content

Instantly share code, notes, and snippets.

@zhanang19
Created February 5, 2020 04:25
Show Gist options
  • Save zhanang19/e6bfe9c9deca399db06dc427a8655a9d to your computer and use it in GitHub Desktop.
Save zhanang19/e6bfe9c9deca399db06dc427a8655a9d to your computer and use it in GitHub Desktop.
<?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