@extends('admin.layouts.app') @section('content')
{!! $content->name !!}
{!! $content->type->name ?? "" !!}
{!! $content->series->name ?? "" !!}
{!! $content->categories_name !!}
{!! $content->is_active ? "Active" : "Inactive" !!}
{!! $content->on_demand ? "Yes" : "No" !!}
@if($content->on_demand)
{!! $content->publish_at ? convertUtcToLocal($content->publish_at,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) : "" !!}
@endif
@if($content->preview_video) @elseif($content->preview_video_url) @endif
@if($content->video) @elseif($content->video_embed_url) @endif
{{ $content->elexio_form_embed_code ?? "" }}
{{ $content->elexio_group_id ?? "" }}
{!! $content->description !!}
@if($content->buttons()->count() > 0) @foreach($content->buttons as $buttons)
{!! $buttons->caption ?? "" !!}
{!! $content->open_in_new_tab ? "Yes" : "No" !!}
{!! $buttons->link ?? "" !!}
@endforeach @endif
{!! $content->btn_link ?? "" !!}
{!! $content->is_registration_required ? 'Yes' : 'No' !!}
{!! $content->password !!}
{!! convertUtcToLocal($content->created_at,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) !!}
{!! @$content->createdBy->name !!}
@if($content->updated_by != "")
{!! convertUtcToLocal($content->updated_at,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) !!}
{!! @$content->updatedBy->name !!}
@endif
@endsection