IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/app/
File Up :
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');
    }
}

Copyright © 2021 - 2025 IMMREX7