Skip to content

Tag: laravel

Laravel 7 API pagination is not working after first time

I am trying search functionality through API. I am getting the response with pagination details for the first time but to load more results next_page_url is giving no results GET http://127.0.0.1:8000/api/search?keyword=cityname&minPrice=0&maxPrice=0&bed=any&propertyType=RESEDENTIAL I am retun…

Nested comment system runs too many queries ( laravel & livewire )

I’ve built a nested comment system and it works fine, but I have a problem. when I want to show the comments, it runs too many queries. for example if I have 10 comments and two replies each, laravel debugger shows 40+ queries, and I want to reduce them, here is my code : Query Relationship in Post.php …

Laravel Relationships with multiple eloquent

Looks like I need some help with the Relationships part.For example, more than one address record of a user is kept in the database. I can’t view the address part, I think I have a problem with eloquent, but I’m not sure. Following my code: user Table adress Table UserModel AdressModel UserControl…

Laravel. CarbonPeriod. All “unical” months between two dates

How to make a period with all months between two random dates? I tried: but it doesn’t include January. I also tried to use floor(): but it includes February that don’t even need. How to get pure “unical” months between two dates using CarbonPeriod? For example: start_date: 2021-11-17 …