Palzin Track
Get 15% off with code PTRACKSIGNUP15 

Laravel Diary Logo

Laravel Miscellaneous Helper Function: with

The with function in PHP simply returns the supplied object. It allows you to invoke methods on new class instances that are passed as function arguments. An alternative to using the with function is to wrap object instantiation within a pair of parentheses. Both techniques achieve the same result, but the with function may enhance readability and clarify intent.