18 lines
276 B
PHP
18 lines
276 B
PHP
|
|
<?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;
|
||
|
|
|
||
|
|
}
|