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

{{$conference->title}}

{{__('conferences.start_date')}} : {{date('d/M/Y ', strtotime($conference->start_date))}}

{{__('conferences.end_date')}} : {{date('d/M/Y ', strtotime($conference->end_date))}}

{!! $conference->description !!}

{{__('conferences.other_belonging')}}

@if(is_array($conference->files) && count($conference->files)) @foreach($conference->files as $files)
{{__('main.file') . ' - ' . $loop->iteration}}
{{__('main.download_file')}}
@endforeach @endif
@endsection @section('inner_js') @endsection