cleanup day

This commit is contained in:
2019-02-05 00:34:09 -06:00
parent 3f2d886861
commit 0eb0d7645c
18 changed files with 141 additions and 176 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Config extends Model
{
// Table Name
protected $table = 'Config';
// Timestamps
public $timestamps = 'false';
}