Showing 10 of 1,280 results.

Laravel Companion: A Guide to Helpers, Collections And More

Whether you're new to Laravel or a seasoned developer, Laravel Companion is your go-to guide for unlocking the full potential of the framework. Packed with real-world examples and concise explanations, this book dives deep into Laravel's helper...

Laravel Facades Part Three: Creating Custom Facades

This article is part of a four part series all about Laravel facades. Each of the parts are listed below: Laravel Facades Part One: An Introduction to Facades, Laravel Facades Part Two: Using Facades, ., Laravel Facades Part Three: Creating Custom...

Laravel Artisan Closure Based Commands

Laravel 5.3 introduced a new shorthand syntax to make writing simple Artisan commands much simpler. The console kernel exposes a command($signature, Closure $callback) method. The $signature parameter accepts a command signature string , which...

Laravel Task Scheduler: An Introduction

Laravel provides a manageable system for scheduling tasks and commands out of the box, the command scheduler. It is a replacement for systems like cron or Windows Task Scheduler in the sense that the actual scheduling of commands is done using...

Laravel 5 Collections: The Static API

The Collection class provides a handful of static helper functions that help in the creation of new collection instances.Laravel 5 Collections Static API: Creating a New Collection Instance From Arrays Using make, Laravel 5 Collections Static API:...

Laravel 4: Rendering a View to a String

Laravel 4 offers Views, a way to separate your applications controllers and business logic from your presentation layer. Sometimes, it can be useful to render the view into a local variable instead of outputting it to the client. You are probably...

Laravel 5: String Translation Public API

The Illuminate\Translation\Translator class is the class that most Laravel developers will become the most familiar with when interacting with the Laravel translation services. The Translator class is responsible for handling the interactions...

Laravel 5 Macros: Public API

…utilizing the Macroable trait; there are not that many of them, but that does not detract from the fact that the Macroable trait is incredibly useful.The following additional articles discuss the various methods that make up the macro's public...

Filter Search