Showing 10 of 2,133 results.

Laravel Artisan Command Input and Command Signatures

Most useful commands need to accept some sort of input from the user. The input can be as simple as requiring users to supply information in the form of parameters and options or can be more complicated by interactively entering data at the...

Laravel ViewErrorBag Public API: put

put($key, Illuminate\Contracts\Support\MessageBag $bag) The put method is used to add a new MessageBag implementation instance to the ViewErrorBag instance, supplied as the argument to the $bag parameter with some name determined by the $key...

Laravel Array Helper Function: array_has

has($array, $key) The has helper method will return a boolean value that indicates if the given $key exists in the supplied $array , using dot notation. This method is incredibly useful when checking if an array has a specific key at an arbitrary...

Where to Make AJAX Calls | Advanced Reply Forms

Where to Make AJAX Calls When integrating AJAX in your Meerkat comment's section, you typically will make AJAX calls from the MeerkatReply.submit method. The following examples will use jQuery, but you can use whatever methods you like. The...

Laravel Artisan Tinker: The buffer Command

The buffer command is useful when entering multi-line expressions. It can be used at any time to view the contents of the buffer when entering multi-line expressions without interrupting the expression input. The following example sessions...

Pint Result Cache | Formatter Configuration and Usage

The Blade formatter will cache Pint output on a per-file basis. By default this cache is stored in node_modules/prettier-plugin-blade/_cache . The location of the cache can be changed by updating the .blade.format.json file and specifying a path...

Ignored Strings | Formatter Configuration and Usage

Strings will be ignored if any of the following conditions are met (these behaviors cannot be disabled at this time): The string does not contains a space, The string contains newline characters, The string contains any of the following...