Laravel – Mailing

Sometimes applications needs functionality to send users a message in the form of an e-mail. Most often, this happens when the user is registering or when password must be reseted. …

Laravel – Testing

Laravel natively supports testing code using frameworks dedicated to writing tests. We have a choice between two frameworks: PHPUnit and PEST. PHPUnit is installed by default. Laravel itself also provides …

Laravel – Localization

To localize a Laravel application, it’s need to provide multiple language files. After that, Laravel can use the provided tools to localize applications in multiple languages based on user language. …