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

Event

Event Category

{{ $event->event_category->name ? $event->event_category->name : '--' }}

Name

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

Strats At

{{ $doctor_event->starts_at ? $doctor_event->starts_at : '--' }}

Ends At

{{ $doctor_event->ends_at ? $doctor_event->ends_at : '--' }}

Address Line 1

{{ $doctor_event->address_line_1 ? $doctor_event->address_line_1 : '--' }}

Address Line 2

{{ $doctor_event->address_line_2 ? $doctor_event->address_line_2 : '--' }}

Image

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

Slug

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

Status

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

Created At

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

Description

{!! $doctor_event->description !!}

@endsection @section('scripts') @endsection