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