Files
w4rpservices/app/Models/Logistics/LogisticContract.php
2019-07-07 02:11:40 -05:00

28 lines
475 B
PHP

<?php
namespace App\Models\Logistics;
use Illuminate\Database\Eloquent\Model;
class LogisticContract extends Model
{
//Table Name
public $table = 'logistics_contracts';
//Timestamps
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'contract_id',
'accepted',
'accepted_by_id',
'accepted_by_name',
'status',
];
}