I have some variables in my blade files, These variables may be empty so I use or
when I trying to echo the variable .
like this:
<div style="background-color: {{ $color or '#888' }}">
but when I run my application I got this error:
ErrorException (E_ERROR)
Undefined variable: color
I searched in internet and found for checking the variables I should use or
but I don't know why I got error !!
P.S: This code run on my previous server without any problem, but in new server I have this error ! previous server was Apache+PHP 7.2 and the new server is Nginx+PHP-FPM .