@extends('layouts.dashboard') @section('content')
@if(Session::has('msg'))

{{ Session::get('msg') }}

@endif

Event Details

Event Id: {{ $eventDetails->human_usable_id }}
Event Status: @if($eventDetails->is_cancelled == 1) Cancelled @elseif ($eventDetails->event_date >= date("Y-m-d")) Upcoming @elseif ($eventDetails->event_date < date("Y-m-d")) Past
@endif

Event Details

Event Name: {{ $eventDetails->event_name }}
Event Description: {{ $eventDetails->description }}
Guest: {{$eventDetails->guest_count}}
Event Date: {{ viso_date_format($eventDetails->event_date) }}
Event Time: {{ viso_time_format($eventDetails->event_start_time) }}
Event City: {{$eventDetails->city_name}}
Event Country: {{$eventDetails->country_name}}
Event Address: {{$eventDetails->area}}
Created on {{$eventDetails->created_at}}
Updated on {{$eventDetails->updated_at}}

Host Details

@if (!empty($eventDetails->is_cancelled)) @endif
Host Name: {{$eventDetails->name}}
Host Contact: {{$eventDetails->phone}}
Host Email Id: {{$eventDetails->email_id}}
Event Status: {!! ($eventDetails->is_cancelled) ? "":"" !!}
Reason: {{$eventDetails->cancel_reason}}
Cancel Time: {{$eventDetails->cancel_date_time}}



Services List

@foreach($eventServices as $eventServicesList) @endforeach
No Service Name Description Date Expected Time Action
{{ $eventServicesList->id }} {{ $eventServicesList->name }} {{ $eventServicesList->description }} {{ viso_date_format($eventServicesList->expected_event_date) }} {{ viso_time_format($eventServicesList->expected_start_time) }}



Vendor Quotes ({{ count($vendors) }})

@foreach($vendors as $vendor)

{{ $vendor['name'] }}

@if(($vendor['is_hired']==1))
Hired
@elseif($vendor['chat_initiated'] > 0)
Initiated
@endif
@foreach($eventVendorQuote[$vendor['name']] as $eventVendorQuotesList) @endforeach
Service Name Quote description Quote Discount
{{ $eventVendorQuotesList->service_name }} {{ $eventVendorQuotesList->vendor_description }} {{ $eventVendorQuotesList->quote }} {{ $eventVendorQuotesList->discount_value }} @if (($eventVendorQuotesList->discount_type == 'percentage')) % @else Rs @endif
@endforeach
@endsection