Files
w4rpservices/app/Models/Contracts/AcceptedBid.php
2019-04-26 02:51:23 -05:00

26 lines
404 B
PHP

<?php
namespace App\Models\Contracts;
use Illuminate\Database\Eloquent\Model;
class AcceptedBid extends Model
{
// Table Name
public $table = 'accepted_bid';
//Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'contract_id',
'bid_id',
'amount',
];
}