flammo76640
I copy this code from documentation: function onStart() { $this['foods'] = ''; $foods = DB::table('hospitality_foods')->where('status', 1)->orderBy('name')->get();
foreach ($foods as $food)
{
$this['foods'] .= '
<div class="food-details">
<div class="food-name">'.$food->name.'</div>
<div class="food-price">'.$food->price.'</div>
</div>';
}
}
html
{% foods|raw %}
and I have error:
- Undefined property: stdClass::$price okey, if I delete this row
- {% foods|raw %} Unknown "foods" tag.
How to fix that?
1-2 of 2