Unparenthesized `a ? b : c ? d : e` is not supported. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)`
I am using PHP 8.3 for a laravel application and I am getting this exception very frequently.
I am using PHP 8.3 for a laravel application and I am getting this exception very frequently.