Showing 10 of 2,055 results.

getWordLeftAtOffset | Text Extraction

Retrieves the word to the left of the provided offset, ignoring the word at the provided offset. Argument Description $offset The character offset. $chars A list of characters that won't break a word. 1 <?php 2 3 public function...

Method 1: Template Adjustments | Guide: User-Only Comment Setup

We need to let Meerkat know about the user who is submitting the comment. The simplest way to do this is by adding a hidden authenticated_user field to your Meerkat form template (extra functionality has been removed from the template for...

Additional Notification Methods | Laravel 5 Facades

The Notification facade defines a few extra methods that can be called without resolving the notification sub-system from the service container. Facades define extra methods to provide simpler access to underlying sub-systems, or to call functions...

Laravel MessageBag Public API: getMessages

The getMessages method is used to return all of the messages stored within the MessageBag instance. The getMessages method will always return an array. If there are no messages in the message bag, an empty array will be returned. 1 <?php 2 3 use...

withCoreValidators | Validating Workspaces

Includes the core validators on the internal BladeValidator instance. If a BladeValidator instance does not already exist on the document, a new one will be created automatically via the ValidatorFactory::makeBladeValidator() factory method. Under...