@extends('layout.master') @section('css') @stop @section('content')

{{ 'Event Details' }}

{{ $event_type }}
{{ $events->title }}
{{ $events->subject }}
{{ $events->conducted_by }}
{{ $events->description }}
{{ $events->platform }}
{{ date(config('app.date_format'), strtotime($events->oraganize_date)) }}
{{ $events->time }}
@if (\Carbon\Carbon::parse($events->oraganize_date)->lt(\Carbon\Carbon::now()->format('Y-m-d')))
Expired
@else @if ($events->status == 1)
Pending
@elseif ($events->status==2)
Approved
@elseif ($events->status==3)
Rejected
@elseif ($events->status==4)
Expired
@else --- @endif @endif
{{ date(config('app.date_format_date_time'), strtotime($events->created_at)) }}
@if ($events->image_link != '') @else @endif
@stop @section('script') @stop