@extends('super_admins.layouts.master') @section('title') View Patient Health @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

Patient Health

Title

{{ $patient_health->name ? $patient_health->name : '--' }}

Image

@if ($patient_health->image) {{ $patient_health->slug }} @else -- @endif

Slug

{{ $patient_health->slug ? $patient_health->slug : '--' }}

Status

{{ $patient_health->is_active ? 'Active' : 'Inactive' }}

Created At

{{ date_format($patient_health->created_at, 'd-m-Y') }}

Description

{!! $patient_health->description !!}

@endsection @section('scripts') @endsection