@extends('layouts.backend') @section('extra_css') @endsection @section('content')
All Posts
@foreach($posts as $post) @endforeach
Id Headline Time Publisher Category Total Hit Action
{{ $post->id }} {{ $post->headline}} {{ Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $post->created_at)->format('H:i/d-m') }} {{ $post->User ? $post->User->name : '' }} @foreach($post->Category->lists('name')->all() as $cat) {{ $cat}}, @endforeach {{ $post->view_count }}
{{ csrf_field() }}
{{ $posts->links() }}
@endsection @section('extra_js') @endsection