mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 12:24:09 +00:00
15 lines
329 B
PHP
15 lines
329 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class InvoiceDetails extends Model
|
|
{
|
|
protected $fillable = ['invoice_id', 'order','description','quantity', 'stock_code', 'unit_price_rmb', 'unit_price_rm', 'total'];
|
|
|
|
public function invoice() {
|
|
return $this->belongsTo(Invoice::class);
|
|
}
|
|
}
|