Skip to main content

Posts

Showing posts from October, 2019

Brief Understanding on Laravel Repository Pattern Design

In this article, we will discuss the “Laravel Repository Pattern Design”. Using the Repository Pattern, we will add an extra layer between application logic and database. Assume, you want to change your DB from Mysql to MongoDB or anything else. Then Repository Pattern is much beneficial, application logics remain the same and all you have to […] Read out the full post at here

Brief Understanding on Laravel Observers

In this article, we will discuss “Laravel Observers”. Laravel provides us to implement the Observer pattern to fire some predefined events, which can be listened to hook into when various actions are performed on a model. No dought, it’s a great feature of the Laravel. Observer Class, methods receive the model as their only argument. […] Read out the full post at here

Laravel Scout with TNTSearch Driver

In this article, we will discuss “Laravel Scout with TNTSearch Driver”. As we know Laravel provides rich features to make development easy and smooth. Laravel provides an official package “Laravel Scout”, which helps to create a full-text search functionality in your application. Prerequisites Here, we need a Laravel installation to make this Laravel Scout functionality. […] Read out the full post at here