MiknasTrading/app/Models/SupplierQuoteItem.php

24 lines
530 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SupplierQuoteItem extends Model
{
protected $fillable = [
'supplier_quote_id', 'description', 'supplier_description', 'unit', 'quantity',
'unit_price', 'total_price', 'is_vatable', 'not_available',
];
protected $casts = [
'is_vatable' => 'boolean',
'not_available' => 'boolean',
];
public function quote()
{
return $this->belongsTo(SupplierQuote::class, 'supplier_quote_id');
}
}