I am getting some weird error while working with blade.
It works just like it should when getting the data inside a dd()
, but
when calling it without a dd()
, an error is thrown telling me that it can't find a field in my object.
In my blade file, this works just fine:
{{ dd($p->components->image->lg_img) }}
This doesn't:
<img src="{{ $p->components->image->lg_img }}" />
The error:
Undefined property: stdClass::$image (View: /home/vagrant/code/xxxxxx/resources/views/resources.blade.php)
$p
andcomponents
? – Juan Eizmendiimg
tag and use@dump $p->components @enddump
for debugging – NoOorZ24