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