2016-03-05 00:18:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
2016-02-29 15:59:36 +00:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Attendize.com - Event Management & Ticketing
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2016-03-05 00:18:10 +00:00
|
|
|
* Description of DateFormat.
|
2016-02-29 15:59:36 +00:00
|
|
|
*
|
|
|
|
|
* @author Dave
|
|
|
|
|
*/
|
2016-03-05 00:18:10 +00:00
|
|
|
class DateFormat extends \Illuminate\Database\Eloquent\Model
|
|
|
|
|
{
|
2016-02-29 15:59:36 +00:00
|
|
|
public $timestamps = false;
|
|
|
|
|
protected $softDelete = false;
|
|
|
|
|
}
|