@extends('layouts.teacher') {{ config('app.name', 'Laravel') }} | Teacher | Add Home Work @section('main-content')
@if (Session::has('success')) @endif

Add New Home Work

Notifcation Details
@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
{!! $homework->html !!}
@endsection