@extends('layouts.contentNavbarLayoutFrontend')
@section('title', 'Conference Details')
@section('vendor-style')
@endsection
@section('page-style')
@endsection
@section('vendor-script')
@endsection
@section('page-script')
@endsection
@section('content')
{{ $conference->title_en }}
{{ $conference->sub_title_en }}
Start Date
{{ date('M d, Y', strtotime($conference->start_date)) }}
End Date
{{ date('M d, Y', strtotime($conference->end_date)) }}
@foreach($conferenceImages as $conferenceImage)
@endforeach
{!! $conference->description !!}
@endsection