mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-21 18:10:57 -04:00
8 lines
138 B
PHP
8 lines
138 B
PHP
<?php namespace App\Models;
|
|
|
|
class DatetimeFormat extends Eloquent
|
|
{
|
|
public $timestamps = false;
|
|
protected $softDelete = false;
|
|
}
|