@extends('layouts.admin.app') @section('content')
| {{ __('Post #') }} | Image | Status | Title | Datetime | Actions |
|---|---|---|---|---|---|
| {{ $post->id }} | @if($post->status === 'publish') {{ ucfirst($post->status) }} @elseif($post->status === 'future') {{ ucfirst($post->status) }} @elseif($post->status === 'draft') {{ ucfirst($post->status) }} @elseif($post->status === 'private') {{ ucfirst($post->status) }} @elseif ($post->status == 'trash') {{ ucfirst($post->status) }} @else {{ ucfirst($post->status) }} @endif | @if(!is_empty($post->post_category?->category?->country_locale_slug) && $post->status == 'publish') {{ $post->title }} @else {{ $post->title }} @endif |
Created at {{ $post->created_at->timezone(session()->get('timezone'))->isoFormat('Do MMMM YYYY, h:mm A') }} Updated {{ $post->updated_at->diffForhumans() }} |