29 lines
511 B
PHP
29 lines
511 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Product extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'sku',
|
|
'description',
|
|
'price',
|
|
'cost',
|
|
'stock_quantity',
|
|
'min_stock_alert',
|
|
'type',
|
|
'serial_number'
|
|
];
|
|
|
|
public function hasLowStock(): bool
|
|
{
|
|
return $this->stock_quantity <= $this->min_stock_alert;
|
|
}
|
|
}
|