@extends('layout.app') @section('css') @endsection @section('content')

{{$dept->name}}

{{-- @if($content) --}}
@foreach($categories as $key => $category)
@php $data = App\Models\Content::where('department_id', $dept->id)->where('dept_category_id',$category->id)->first(); @endphp @if ($data)
{!!$data->content!!}
@else

No Contents Uploaded

@endif
@endforeach
{{-- @else

No Contents Uploaded

--}} {{-- @endif --}}
@endsection