Stevebauman\Inventory\Models\InventoryTransaction::stock PHP Method

stock() public method

The belongsTo stock relationship.
public stock ( ) : BelongsTo
return Illuminate\Database\Eloquent\Relations\BelongsTo
    public function stock()
    {
        return $this->belongsTo(InventoryStock::class, 'stock_id', 'id');
    }
InventoryTransaction