More Service display

This commit is contained in:
Deon George
2019-07-02 15:28:27 +10:00
parent 6103b61265
commit 59a8ef2476
14 changed files with 311 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models\Base;
use Illuminate\Database\Eloquent\Model;
use App\Models\Product;
//@todo column prod_plugin_file should no longer be required
abstract class ProductType extends Model
{
public $timestamps = FALSE;
public $dateFormat = 'U';
}