@extends('frontend_eng.layouts.app') @section('title', 'Departments') @section('meta', 'Welcome to Om Hospital and Research Center PVt. Ltd.') @section('content') @if (empty($department->banner_image))
@endif
@if ($department->banner_image)
{{ $department->dept_name }}
@endif
{!! $department->description ? $department->description : 'No Content'!!}
@if($doctors->isNotEmpty())

Meet the Doctors

@foreach ($doctors as $doctor)
{{$doctor->name}}
{{$doctor->name}}
{{$doctor->specialization ? $doctor->specialization : ''}}
{{$doctor->department->dept_name ? $doctor->department->dept_name : ''}}
View Profile
@endforeach
@endif
@endsection