@extends('layouts.public.main') @section('content')

{{ $new->title }}

@foreach ($new->pictures as $picture)
first) class="col-12" @else class="col-4" @endif> {{ $picture->title }}
@endforeach

{!! $new->body !!}

{{ \App\User::find($new->user_id)->fullname()}}, {{ $new->created_at }}
@if($new->tags != []) @foreach($new->tags as $tag) @if($tag == "Important") {{$tag}} @else {{$tag}} @endif @endforeach @endif
@foreach($new->files as $file)
{{$file}}
@endforeach
Retour
@endsection