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

Clinic

Title

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

Image

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

Slug

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

Status

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

Created At

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

Description

{!! $clinic->description !!}

@endsection @section('scripts') @endsection