hauling configuration and hauling controller updates

This commit is contained in:
2019-10-22 01:39:13 -05:00
parent fc95c634e9
commit 388592d86a
6 changed files with 127 additions and 11 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace App\Models\Config;
use Illuminate\Database\Eloquent\Model;
class HaulingConfig extends Model
{
//Table name
protected $table = 'hauling_configuration';
//Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'load_size',
'min_load_size',
'max_load_size',
'price_per_jump',
];
}