@extends('admin::layout.default') @section('content') @include('news::post.heading')
{{ trans('admin.NEWS_POSTS') }}
@foreach($table as $row) @endforeach
{{ trans('admin.OPTIONS') }} {{ trans('admin.NAME') }} {{ trans('admin.CATEGORY') }} {{ trans('admin.CREATED') }} {{ trans('admin.UPDATED') }} {{ trans('admin.ACTIVE') }}
{{ $row->headline or null }} {{ $row->category_name or null }} @if ($row->created_at <> '0000-00-00 00:00:00') {{ date("d.m.Y h:i", strtotime($row->created_at)) }} @endif @if ($row->updated_at <> '0000-00-00 00:00:00' && $row->updated_at <> null) {{ date("d.m.Y h:i", strtotime($row->updated_at)) }} @endif @if ($row->active == 1) @else @endif

{{$table->links()}}
@endsection