Showing 10 of 2,133 results.

Required Fields | Configuring the Blueprint

Blueprints allow you to specify which form fields Meerkat should expect when it is handling comment submissions. You are free expand the fields in the blueprint, but the following fields are required in order to ensure Meerkat functions properly:...

Example Use | Laravel 5: String Translation Public API

In the following examples, we will look at the various ways we can invoke the get method. We will start with simple translation line retrieval and gradually work through using the remaining parameters.

Laravel 5: Generating URLs With url

The url helper function is a versatile function that can be used to generate a URL to a given path or return an instance of the configured Illuminate\Contracts\Routing\UrlGenerator implementation (by default this is an instance of...

Laravel Artisan: Interacting With Commands

This article will discuss the various ways that we as users can interact with Artisan console commands. This article contains many sections which focuses on specific ways to interact with commands or gain information about commands. Each section...

Laravel MessageBag Public API: count

The count method is a straightforward method and simply returns the total number of items in the collection. The count method returns an integer. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 // Create a new collection instance. 6 $...