When you upgrade or downgrade PHP Version of Laravel Valet it creates this issue of getting 502 Bad Gateway Error while accessing any parked .test domain. Simple way to solve this by updating composer first. composer global update Once done reinstall Valet again. It takes very less time. valet install Run this command to make sure that you use correct version of php valet use php@7.4
Issue
![Laravel Valet : 502 Bad Gateway [SOLVED]](https://dwij.net/images/laravel-valet-502-bad-gateway-solved.jpg)
Laravel Valet : 502 Bad Gateway [SOLVED]

Flutter: Putting ListView.builder inside another ListView
No doubt ListView is one of the most used Container Widget in any Mobile Application as it gives us a seamless scrolling effect and a lot of space to put our content neatly. You are here because you might have received the following error: Vertical viewport was given unbounded height. The relevant error-causing widget was ListView Your code might look like this: ListView( children: [ Container( child: ListView.builder( itemCount: snapshot.data.length, itemBuilder: (context, index) {} ), ), ] ) Now add shrinkWrap: true, physics: ScrollPhysics(), to ListView....