aku nok ndi : /home/spdtg/www/schoolmis/app/ |
aku nok ndi : /home/spdtg/www/schoolmis/app/QuotationDetail.php |
<?php namespace App; use Illuminate\Database\Eloquent\Model; class QuotationDetail extends Model { protected $primaryKey = 'idQuotationDetail'; protected $table = 'quotation_details'; protected $fillable = ['idQuotation','idProduct','quantity']; public function product() { return $this->belongsTo(Product::class, 'idProduct', 'idProduct'); } }