@extends('layouts.backend') @section('extra_css') @endsection @section('content') All Posts Add Post Id Headline Time Publisher Category Total Hit Action @foreach($posts as $post) {{ $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() }} @endforeach {{ $posts->links() }} @endsection @section('extra_js') @endsection