@extends('admin.layouts.admin')
@section('title')
Admin | Feature Post Details
@endsection
@section('content')
Feature/Post
Feature Post Details
-
Title:
{{ $blog->name }}
-
Slug:
{{ $blog->slug }}
-
Category:
{{$blog->getRelation('category')->name ?? ''}}
-
Tags:
{{ $blog->tags }}
-
Description:
{!! $blog->description !!}
-
Image:
@if(!empty($blog->photo) && $blog->photo->file_path)
@endif
-
Meta Title:
{{ $blog->meta_title }}
-
Meta Description:
{!! $blog->meta_description !!}
-
Meta Keywords:
{{ $blog->meta_keywords }}
@endsection