@extends('admin.partial.template-full') @section('section')

Newsroom

Manage News and Platform Tips

@if($newsroom->count() > 0)
@foreach($newsroom as $news) @endforeach
ID Title Slug Status Updated
{{ $news->id }}

{{str_limit($news->title, 50)}}

{{--

{{str_limit($news->summary, 80)}}

--}}
@if($news->published_at) {{$news->slug}} @else {{ $news->slug }} @endif @if($news->published_at != null) PUBLISHED @else DRAFT @endif {{ $news->updated_at->diffForHumans() }}
{!!$newsroom->links()!!}
@else

No Announcements Found!

@endif
@endsection