The first line is the original. I am trying to do a conditional @extend. @extends('invoicelayout')...
seems to work if I use || instead of or. $var = 1; echo ($var==1 || $var ==0 ? 'true: ' : 'false');...
Doesn't work with the or statement. I will find out why later. $var = 1; echo ($var==1 ? 'true: ' :...
The Laravel portal for problem solving, knowledge sharing and community building.
The community