@extends('web.layouts.container') @section('content')

{{date('d M Y', strtotime($firstEvent->start_date))}}

{{$firstEvent->title}}

{!! wordLimit(stripText($firstEvent->description, 410)) !!}

{{__('main.read_more')}}
@if(count($conferences)) @foreach($conferences as $conference) @if($conference->id == $firstEvent->id) @continue @endif

{{wordLimit($conference->title, 8)}}

{{date('d M Y', strtotime($conference->start_date))}}

{!! wordLimit(stripText($conference->description, 100)) !!}

{{__('main.read_more')}}
@endforeach @endif
@if(count($conferences) > 1) @endif
@endsection @section('inner_js') @endsection