I want to load the whole site content from a database, I got to the point when the HTML is perfectly showing with the {!! $content[0]["content"] !!}, but that HTML has other blade expressions in it, to get other data from other tables in the database and insert it into the site. And that part is showing too as plain HTML. Like in a table cell, instead of the value, I get this: {{ prices[0] }} Can you run the blade interpreter two times on load? Or what I want to do is a no-go and I need to figure out some other ways? I return to the view as return view('view')->with("prices",$prices)->with("content",$content);
Thanks in advance!