|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
/*
|
|
Attendize.com - Event Management & Ticketing
|
|
*/
|
|
|
|
/**
|
|
* Description of DateFormat.
|
|
*
|
|
* @author Dave
|
|
*/
|
|
class DateFormat extends \Illuminate\Database\Eloquent\Model
|
|
{
|
|
public $timestamps = false;
|
|
protected $softDelete = false;
|
|
}
|