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

View File

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