@extends('layouts.public') @section('title', $item->title) @section('content') @if($item->category) {{ $item->category }} @endif {{ $item->title }} @if($item->client_name) Client : {{ $item->client_name }} @endif @if($item->realized_at) {{ $item->realized_at->translatedFormat('F Y') }} @endif @if($item->cover_image) @endif {!! nl2br(e($item->content)) !!} @if($others->isNotEmpty()) Autres réalisations @foreach($others as $other) @if($other->cover_image) @endif {{ $other->title }} @endforeach @endif @endsection