artkonekt / appshell

AppShell is an Laravel Application boilerplate with UI, ACL, Users & Customers
https://konekt.dev/appshell
MIT License
79 stars 10 forks source link

Fix Error: Unparenthesized `a ? b : c ? d : e` #29

Closed peterson-umoke closed 2 years ago

peterson-umoke commented 2 years ago

Unparenthesized a ? b : c ? d : e is deprecated. Use either (a ? b : c) ? d : e or a ? b : (c ? d : e)

Fix error: unparenthesized , compatible with php 7.4 && php 8.0 and above