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

Event

Name

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

Sponsor

{{ $clinic_event->sponsor ? $clinic_event->sponsor : '--' }}

Strats At

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

Ends At

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

Address Line 1

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

Address Line 2

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

Image

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

Slug

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

Status

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

Created At

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

Description

{!! $clinic_event->description !!}

@endsection @section('scripts') @endsection