@extends('layouts.front') @section('content')
1

{{$data->title}}

{{$data->location}}

{{$data->description}}

@if($data->images) @php $images = $data->images; $imagess = explode('|', $images); @endphp
@if($imagess) @foreach($imagess as $item) @endforeach @endif
@endif
@if(count($comments))

Comentarii ({{count($comments)}}):

@foreach($comments as $comment)

@if(!$comment->isAnonymous) {{$comment->user->name}} @else Utilizator anonim @endif

{{\Illuminate\Support\Carbon::parse($comment->created_at)->format('d.m.Y')}}

{{$comment->comment}}

@endforeach
@endif
@csrf

Lasa un comentariu

@endsection