*/ protected $fillable = [ 'name', 'description', 'ext_id', 'created_by', 'updated_by' ]; /** * Get the stock entries for this supplier. */ public function stockEntries(): HasMany { return $this->hasMany(PhysicalItem2Stock::class); } }