@extends('layouts.public.main') @section('content')
@if ($news->isEmpty())

Aucune nouvelles

@endif
@foreach ($news as $new)

{{ $new->title }}

{!! $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 @if($new->files != [""]) Fichier joint @endif
event_id)) href="/news/{{$new->event_id}}?type=msg" role="button">Voir plus! @else href="/news/{{$new->id}}" role="button">Voir plus! @endif
@endforeach
{{ $news->links() }}
Retour
@endsection