Junior Grossi

Results 131 comments of Junior Grossi

@tbruckmaier Corcel now follows Laravel versions, like 2.8 -> Laravel 5.8. this was done in 2017, and the ACF plugin was developed when Corcel was 1.0. it works with the...

@moazam1 just released 1.1.1 matching the `develop` branch. about the auto generate layout, if you give me more information about it, we can work together to make that feature available

Hi @njbarrett thanks for the comment. Both `FlexibleContent` and `Repeater` makes a lot of SQL, even in the original plugin. Our goal is to decrease that, but we need help...

Hey @njbarrett thanks for that! Yep, we have to remove those duplicated queries. I'm gonna take a look on the code and check where I can "cache" that to void...

Hi @florianflock @njbarrett yep! That should be improved a lot. We're doing extra queries, but I think "caching" is not our responsibility here, but better SQL queries. I'm sure we...

Hi @florianflock sorry for the late response. I'm gonna try to work on this in the next weeks, and if you can help you're welcome!

![](https://github.trello.services/images/mini-trello-icon.png) [Improve SQL queries in Repeater and Flexible Content fields](https://trello.com/c/XZxwbBkD/15-improve-sql-queries-in-repeater-and-flexible-content-fields)

@DanDvoracek there's no official documentation about all fields for now. The code itself is very simple and easy to understand. You're welcome to send a PR ;-)

@DanDvoracek and about getting the `flexibleContent` you're doing it right. If the call is returning an empty result is a good opportunity to debug your code and maybe fix a...

@DanDvoracek no, everything is correct. You can simplify: ```php $pages = Page::published()->get(); return view('frontend.pages', compact('pages')); ``` If you have published pages in the WP database this must work.