* * @version 1.0.0 */ class Inventory extends Model { protected $fillable = [ 'category_id', 'name', 'sku', 'stock', 'is_active', ]; protected $casts = [ 'is_active' => 'boolean', ]; public function category() { return $this->belongsTo(Category::class); } public function price() { return $this->hasOne(Price::class); } }