IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/app/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/app/InvoiceDetail.php

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class InvoiceDetail extends Model
{
    protected $primaryKey = 'idInvoiceDetail';
    protected $table = 'invoice_details';
    protected $fillable = ['idInvoice', 'idProduct', 'quantity','rate','tax','taxAmount','productTotal'];

    public function product() {
        return $this->belongsTo(Product::class, 'idProduct', 'idProduct');
    }
}

Copyright © 2021 - 2025 IMMREX7