<?php namespace App\Models; use App\Traits\My; use Illuminate\Database\Eloquent\Model; class Logs extends Model { use My; const eventCreated = 'created'; const eventUpdated = 'updated'; const eventDeleted = 'deleted'; }