Search

Showing 7 of 2,041 result(s)

/blog/2018/04/21/laravel-5-facades#content-fake

The fake method will swap the currently bound notification channel manager instance with a fake; this is incredibly useful for testing purposes. The fake notification manager instance, by default, is an instance of...

/meerkat/advanced-reply-forms

This article assumes that you have read through the Reply Forms article and already have a custom reply form that you want to extend further with JavaScript. You can hook into Meerkat's reply-to functionality by modifying the MeerkatReply window...

/site-essentials-for-statamic/v1/antlers-modifiers/se_each-modifier

The se_each modifier can be used to render another template for each item within an array. The rendered template will receive the full context scope at the time the modifier was invoked, as well as the data from the item being iterated. 1 {{#...

/social-media-image-kit/v1/generating-images#content-generating-images-for-a-single-entry

To regenerate images for a single entry using the command line we can pass the ID of the entry as the first argument to the generate-images command: 1 php artisan social-media-image-kit:generate-images the-id-here --regen

/blade-parser/v1/documents#content-tostring

Returns a string representation of the document. This method will traverse every node in the document and call its corresponding toString() method. Any modifications made to the document's node will be represented in the results of this method...

/blade-parser/v1/parser-errors#content-isfatal

Tests if the current error is considered a "fatal" error. Fatal errors are those that are likely to cause issues when compiling the final PHP for a given template. Some parser generated errors are "warnings", and will not be reported as fatal...

/blade-parser/v1/parser-nodes#content-literal-nodes

Instances of Stillat\BladeParser\Nodes\LiteralNode are created to represent the non-Blade content contained within an input document. Literal nodes maintain helpful information, such as the original trailing and leading whitespace discovered while...