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

Doctors Category

Name

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

Image

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

Slug

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

Status

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

Created At

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

Description

{!! $doctor_category->description !!}

@endsection @section('scripts') @endsection