I want to call $images values anywhere outside the loop.
$images = DB::table('images')->where('status', 'active')->get();
@foreach ($images as $img) {
$title = $images->title;
echo $title;
@endforeach
}
Output: Apple Mango Banana Pine Grapes
Now I want to call all these values of $title within a division which is outside the loop.
<div>
{{ $title }}
</div>