Showing 10 of 2,133 results.

Form Attributes | Meerkat Forms

With Meerkat, it is simple to add additional form attributes to your Meerkat forms. The following example demonstrates how to add a custom HTML data attribute and a CSS class: 1 {{ meerkat : create class = " w-full " data-attribute = " my-value "...

Requiring Kint | Laravel and Kint Debugging

Since we are trying to get everything to work nicely with Kint, we should probably have Kint required in our project. Add this to your composer.json file (either in your require or require-dev section. I put mine in the require-dev section): 1 ......

The is:after Filter | The "is" Filters

…allows you to filter comments to those that appear after a certain date. It accepts either a UNIX timestamp, or the date as text input. The following example would return all comments that were submitted to the server after January 1st, 1990:...

hasAnyOfType | Querying Document Nodes

Tests if the document contains any node of the provided type. Argument Description $type The desired type. 1 <?php 2 3 public function hasAnyOfType ( 4 string $ type 5 ) : bool ;

No Directive Arguments | The Validate Command

Class : NoArgumentsValidator The no directive arguments validator emits a validation error when directive's that should not contain arguments have arguments in the template. The following template: 1 @ endphp ( $ args ) will emit the following...