@extends('admin.layouts.masterlayout') @section('title', 'View Live Stream') @section('head_title', 'Event Management') @section('content')
{{ isset($live_stream->title) ? $live_stream->title : '-' }}
{{ isset($live_stream->user_details->name) ? $live_stream->user_details->name : '-' }}
{{ isset($live_stream->assignTo->name) ? $live_stream->assignTo->name : '-' }}
{{ isset($live_stream->start_time) ? \Carbon\Carbon::parse($live_stream->start_time)->format('d-m-Y h:i A') : '-' }}
{{ isset($live_stream->description) ? $live_stream->description : '-' }}