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
October 14, 2023
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…
Friends, many times there is such data inside the database which keeps repeating multiple times and what we need is that we need only unique answers from them, I am…
Adding days to $Date can be done in many ways. It is very easy to do by using built-in functions like strtotime() in PHP. A. Add days $Date = date('Y-m-d');…