Laravel eloquent

Laravel is an MVC based PHP framework. In MVC architecture, ‘M’ stands for ‘Model’. A Model is basically a way for querying data to and from the table in the database. Laravel provides a…

0 Comments

Post loading on page scroll

Friends, as you must have seen in WordPress, when we go to the page containing the block post and scroll to it, the block posts open automatically on infinite scroll.…

0 Comments

Laravel pagination

Friends, many times what happens is that there is a lot of data in our return database table, meaning it is in thousands and lakhs and when we bring it…

0 Comments

Orderby in laravel

Sometimes we need to use orders to get the data from database like order by date order name order by create extra. In this snippet, we’re using Laravel Eloquent to fetch…

0 Comments