@extends('web.layouts.layout') @section('content')
{!! $header->title !!}

{!! $header->description !!}

@if(count((json_decode($media->participants) ?? [])) )
{{__('web.participants')}}
@foreach((json_decode($media->participants) ?? []) as $row)
@endforeach
@endif
{!! $media->show_date !!}
{!! $media->currentDescription->title !!}
{!! $media->currentDescription->description !!}
@if(count((json_decode($media->participants) ?? [])) )
{{__('web.participants')}}
@foreach((json_decode($media->participants) ?? []) as $row)
@endforeach
@endif
@endsection