Showing 10 of 2,055 results.

Part One: Creating a Custom Pagination View in Laravel

…You can view the completed part two of this article by visiting Part Two: Creating a Custom Pagination View in Laravel In this post we are going to look at building a custom paginator view in Laravel 4. There are quite a few posts are the Web...

Laravel Collection Public API: implode

implode($value, $glue = null) The implode method will combine the items of the collection together. The Collection 's implode method behaves differently than PHP's implode function in that it can operate on arrays of primitive data types as well...

Scheduling Callbacks | Laravel Task Scheduler: An Introduction

It is possible to schedule a function to execute at a given interval using the schedule's call method: 1 <?php 2 3 // ... 4 5 protected function schedule ( Schedule $ schedule ) 6 { 7 $ schedule -> call ( function ( ) { 8 // Some task to execute...

Example Use | Laravel 5: String Translation Public API

…resources/lang/en/plural.php . The language file we will create may have some syntax that is unfamiliar, or intimidating at first, but we will cover the pluralization message syntax in further detail in a later section. For now, let's just focus...