Things I didn't know Laravel could do
A developer shares surprising Laravel features and techniques discovered while writing the book 'Laravel: Up and Running'.
A developer shares surprising Laravel features and techniques discovered while writing the book 'Laravel: Up and Running'.
The author explains their decision to publish their book 'Laravel: Up and Running' with O'Reilly instead of self-publishing.
A guide on migrating from Mandrill to SparkPost for transactional emails in a Laravel application, including setup and configuration.
A tutorial on building a password-less login system in Laravel using email-only authentication, where users receive a login link.
Explains how to configure MySQL strict mode and custom SQL modes in Laravel 5.2, enabling or disabling it via database configuration.
A developer asks for community help on several open-source projects due to increased time constraints from other work.
A first look at Statamic v2 beta, a flat-file CMS built on the Laravel PHP framework, from the developers at Tighten.
Explains how to use multiple authentication guards, including API tokens, in Laravel 5.2 for web and stateless API routes.
An overview of the new `make:auth` artisan command and authentication scaffolding features introduced in Laravel 5.2.
Explains Laravel 5.2's middleware groups feature for simplifying route middleware management.
Explains how to implement API rate limiting using the new 'throttle' middleware in Laravel 5.2, including header responses.
Explains the new implicit route model binding feature in Laravel 5.2, which simplifies linking URL parameters to Eloquent models.
Explains how to validate HTML form arrays in Laravel 5.2, using a company/employee form example.
How to securely set and exclude environment-specific variables from version control in Laravel's testing environment using a .env.test file.
Learn how to create custom Blade directives in Laravel to simplify conditional logic in your views, using a multitenant app as an example.
A deep-dive technical guide into Laravel Spark, an alpha-release tool for quickly building SaaS applications with Laravel.
A guide to implementing Access Control List (ACL) authorization using the Gate system in Laravel 5.1.
Explains how to use Laravel 5.1's built-in login throttling feature to prevent brute-force attacks by limiting failed login attempts.
A tutorial on implementing GitHub OAuth login in a Laravel application using the Socialite package for user authentication.
How to exclude specific routes from CSRF protection in the Laravel 5.1 PHP framework.