@extends('admin.layout.default') @section('content') @include('admin.pages.blog.post.heading')
{{ trans('admin.BLOG_POSTS') }}
    {!! csrf_field() !!}
@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') {{ date("d.m.Y h:i", strtotime($row->updated_at)) }} @endif @if ($row->active == 1) @else @endif
@endsection