.. _static-method: Static Method ------------- Static methods are methods defined with the static keyword. They have to be called with the name of the class, rather than instantiated object. .. code-block:: php `Documentation `__ See also `When to use static methods `_, `When Should You (And Shouldn’t You) Use Static Methods in Laravel/PHP? A Practical Guide `_ Related : :ref:`Method `