@extends('layouts.admin') @section("title", "Blog Details") @section('page-header')
| Title | {{$blog->title}} |
|---|---|
| Status | @if($blog->status == 0) Unpublish @elseif($blog->status == 1) Draft @else Publish @endif |
| Date | {{date("d/m/y", strtotime($blog->created_at))}} |
| Slug | {{$blog->slug}} |
| Categories | @foreach($blog->categories as $category) {{$category->category->name}} @endforeach |
| Short Description | {{$blog->short_description}} |
| Description | {!! html_entity_decode($blog->description) !!} |
| Meta Title | {{$blog->meta_title ?? "N/A"}} |
| Meta Description | {{$blog->meta_description ?? "N/A"}} |
| Meta Keyword | {{$blog->meta_keyword ?? "N/A"}} |
| Img Alt Text | {{$blog->img_alt_text ?? "N/A"}} |
| Meta Robots Tags | {{$blog->meta_robots_tags ?? "N/A"}} |