@extends('layouts.admin') @section('content')
Post Categories
All Posts
@foreach ($posts as $post) @endforeach
# Name Category Created at Status Actions
{{$post->id}} {{$post->title}} {{$post->category->name}} {{$post->created_at}} {{$post->status==1?'Active':'Inactive'}} Details Edit Delete
{!! $posts->links() !!}
{{-- --}}
@endsection