changed models

This commit is contained in:
2018-10-26 22:36:13 -05:00
parent dab3420ff5
commit adf109a0b0
15 changed files with 108 additions and 17 deletions

14
app/Models/Config.php Normal file
View File

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