New Initial Commit
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class OrderItem extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'order_id',
|
||||
'product_id',
|
||||
'print_stock_id',
|
||||
'quantity',
|
||||
'price',
|
||||
'type',
|
||||
'length',
|
||||
'width',
|
||||
'height'
|
||||
];
|
||||
|
||||
public function order()
|
||||
{
|
||||
return $this->belongsTo(Order::class);
|
||||
}
|
||||
|
||||
public function product()
|
||||
{
|
||||
return $this->belongsTo(Product::class);
|
||||
}
|
||||
|
||||
public function printStock()
|
||||
{
|
||||
return $this->belongsTo(PrintStock::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user