37 lines
645 B
PHP
37 lines
645 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
/*
|
|
Attendize.com - Event Management & Ticketing
|
|
*/
|
|
|
|
/**
|
|
* Description of DateTimeFormat.
|
|
*
|
|
* @author Dave
|
|
*/
|
|
class DateTimeFormat extends \Illuminate\Database\Eloquent\Model
|
|
{
|
|
/**
|
|
* The database table used by the model.
|
|
*
|
|
* @var string $table
|
|
*/
|
|
protected $table = 'datetime_formats';
|
|
|
|
/**
|
|
* Indicates whether the model should be timestamped.
|
|
*
|
|
* @var bool $timestamps
|
|
*/
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* Indicates whether the model should use soft deletes.
|
|
*
|
|
* @var bool $softDelete
|
|
*/
|
|
protected $softDelete = false;
|
|
}
|