@extends('template.layout') @section('title', 'Archive') @section('submenuItem', 'archive') @section('content')
{{ date('M d Y', strtotime($news->created_at)) }} -
{{ $news->title }}
{!! $news->body !!} @if(Auth::check() && Auth::user()->isAdmin())
Edit
Delete
@endif


@endsection