Edit File: ProductAdditive.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class ProductAdditive extends Model { use HasFactory; public $fillable = ['product_additive_category_id' , 'product_id']; public function additive(){ return $this->belongsTo(ProductAdditiveCategory::class); } }
Back to File Manager