@php
$images = App\Models\HomeWorkImage::select(DB::raw("CONCAT('$cdn', image) AS image"),'id')
->where('home_work_id', $homework->id)
->get()
->pluck('image','id')
->toArray();
@endphp
@foreach ($images as $key => $image)
@endforeach
New Images:
{!! $homework->html !!}