41 lines
788 B
PHP
41 lines
788 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Product extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'description',
|
|
'price',
|
|
'image',
|
|
'category',
|
|
'stock',
|
|
'status'
|
|
];
|
|
|
|
protected $casts = [
|
|
'price' => 'decimal:2',
|
|
'stock' => 'integer'
|
|
];
|
|
|
|
/**
|
|
* Get the orders for the product.
|
|
*/
|
|
public function orders()
|
|
{
|
|
return $this->belongsToMany(Order::class, 'order_products')
|
|
->withPivot('quantity', 'price', 'total')
|
|
->withTimestamps();
|
|
}
|
|
}
|