Sending a test email from a Laravel application

Learn how to send a test email from a Laravel app

Category: Development
Subcategories: Tutorials
21/05/2021
2063 times
Sending a test email from a Laravel application
Related posts
Laravel tutorial

This page contains all the material related to the meeting series about Laravel Development held at Magneti Cowork, Palermo, Italy.

State pattern implementation of finite state machine (FSM) with Laravel

In the previous article TDD IMPLEMENTATION OF FINITE STATE MACHINE (FSM) WITH LARAVEL I discussed a basic approach for implement a Finite State Machine (FSM) on a Laravel model. In this article I will further discuss the topic by applying a more engineered approach. It involves the usage of the State pattern

Laravel Visitor

LaravelVisitor is a Visitor Design Pattern implementation for Laravel. It allows to easily execute processing of collections of arbitrary elements, without requiring to use repeated conditionals, thus improving code abstraction.

What's behind Laravel Encryption/Decryption

My system is safe, it uses encryption. You heard/said this from time to time. Sure, but why and how is it safe? Do you really know this?