Blog
February 21, 2020
Run Elasticsearch With Laravel on MacOS
A guide on how to install Elasticsearch on MacOS in order to use it as a driver for Laravel Scout
ReadFebruary 1, 2020
Binding API Connection Interfaces To Implementations in The Laravel Container
The Laravel service container is called "a powerful tool for managing class dependencies and performing dependency injection". In this post, we will look at a possible use case of the service...
ReadJanuary 23, 2020
Passing Multiple Arguments To Laravel Policy Methods
In most cases, when writing policies in Laravel, you only pass one argument to a policy method, since the authenticated user is already available through dependency injection and no other resources...
ReadDecember 20, 2019
Using The Where Clause in Validation Rules
Just recently I discovered you can apply where
statements to the unique
and exists
validation rules in Laravel, without using a closure.
This means you can...