@extends('layouts.admin.main') @section('content')
Nouvelles

@foreach($news as $n)

{{$n->title}}

{{$n->user->fullname()}} - {{$n->created_at}} @if($n->publish == 0) Brouillon @endif

{!! $n->body !!}
@endforeach
@endsection @section('breadcrumb') @endsection @section('custom_scripts') @endsection