Stevebauman\Inventory\Models\Supplier::items PHP Method

items() public method

The belongsToMany items relationship.
public items ( ) : Illuminate\Database\Eloquent\Relations\BelongsToMany
return Illuminate\Database\Eloquent\Relations\BelongsToMany
    public function items()
    {
        return $this->belongsToMany(Inventory::class, 'inventory_suppliers', 'supplier_id')->withTimestamps();
    }
Supplier