Laravel Developer Cheat Sheet.jpg

Laravel Cheat Sheet & Full Reference

I assume you're landing on this page because, like me, you're a Laravel developer trying to find a full-fledged Laravel Cheat Sheet or a Laravel Developer Cheat Sheet for your shortcut to your daily Laravel development. Using a cheat sheet isn't limited to beginner or intermediate de...
Read more...

Simplifying Laravel Development with Invokable Controllers

Introduction Laravel, one of the most popular PHP frameworks, is renowned for its simplicity, elegance, and developer-friendly features. Among its array of powerful functionalities, "Invokable Controllers" stands out as an exceptional feature that can significantly enhance the organi...
Read more...

Login with Username or Email with Laravel 10: Enhanced User Authentication

Introduction: Welcome back to my blog series on user authentication with Laravel! In my previous articles, we have covered the topic of login with username or email in different versions of Laravel. Today, I'm excited to bring you an updated approach specifically for Laravel 10. This...
Read more...

Generate Free SSL Certificates with Let's Encrypt in Laravel: A Step-by-Step Guide

Introduction: In this tutorial, we will guide you through the process of setting up a simple Laravel website that allows users to generate free SSL certificates using Let's Encrypt, PKIJS, and JSZIP. SSL certificates are essential for securing websites and enabling HTTPS. We will walk...
Read more...

Simplify Your Code with Single Action Controllers in Laravel

In the Laravel framework, controllers play a crucial role in organizing and handling the logic of your web application. Typically, a controller contains multiple actions, each responsible for handling a specific HTTP request. However, there are cases where a controller may only need t...
Read more...
Laravel Jetstream.jpg

Laravel Jetstream: Quick Review

The official team from Laravel has announced the next major version, Laravel 8.0, to release on the 8th of September 2020. Along with this significant release, few first-party packages, including Laravel Jetstream, Fortify are also releasing to join the Laravel ecosystem. The author...
Read more...
Deploy Laravel Apps.jpg

How to Deploy Laravel Application to VPS Server

In the previous article, I wrote about how we can utilize an Envoy package, and gave a walk through to the Envoy use cases, and explained who it makes a lot easier on deploying your next Laravel application to the remote server. Throughout this article, you are going to learn how you...
Read more...

Laravel Envoy to Deploy your Application to Hosting Server

Laravel Envoy is an open-source package to efficiently deploy your apps to the server or even run tasks in the local environment. It is one of the most helpful tools in the Laravel ecosystem that every developer utilize every day. This tool provides a precise, minimal syntax for defin...
Read more...

Laravel 5.7: Adding Support for Login with Username or Email

I've already published a few articles on Laravel Login to support username or email. In this article, I'm going to cover the process of adding the username or email support with Laravel 5.7 default authentication system. The process below helps you to understand the following things....
Read more...
Laravel 5.7 Email Verification

Email Verification after Registration with Laravel 5.7

Nowadays most of the modern applications force their users to verify the ownership by sending an activation email after they complete the account registration. Moving ahead, with the release of Laravel 5.7 the user email verification is shipping with the framework out of the box. Peop...
Read more...