|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Backpack\CRUD\app\Models\Traits\CrudTrait;
|
|
|
|
/*
|
|
Attendize.com - Event Management & Ticketing
|
|
*/
|
|
|
|
/**
|
|
* Description of EventImage.
|
|
*
|
|
* @author Dave
|
|
*/
|
|
class EventImage extends MyBaseModel
|
|
{
|
|
use CrudTrait;
|
|
//put your code here.
|
|
}
|