@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}} {{ $post->created_at->format('F j, Y') }} {{ $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