@extends('admin.layout') @section('title', 'Blog Detay') @section('page-title', 'Blog Detay') @section('content')

{{ $blog->title }}

Oluşturulma: {{ $blog->created_at->format('d.m.Y H:i') }}

Düzenle Geri Dön
@if($blog->image)
{{ $blog->title }}
@endif
İçerik
{!! nl2br(e($blog->content)) !!}
Blog Bilgileri

Durum:
@if($blog->status === 'published') Yayında @else Arşivlenmiş @endif

Slug:
{{ $blog->slug }}

@if($blog->category)

Kategori:
{{ $blog->category->name }}

@endif @if($blog->admin)

Oluşturan:
{{ $blog->admin->name }} {{ $blog->admin->surname }}

@endif

Son Güncelleme:
{{ $blog->updated_at->format('d.m.Y H:i') }}

@if($blog->meta_title || $blog->meta_description || $blog->meta_keywords)
SEO Bilgileri
@if($blog->meta_title)

Meta Başlık:
{{ $blog->meta_title }}

@endif @if($blog->meta_description)

Meta Açıklama:
{{ $blog->meta_description }}

@endif @if($blog->meta_keywords)

Anahtar Kelimeler:
{{ $blog->meta_keywords }}

@endif
@endif
İşlemler
@csrf @method('PATCH') @if($blog->status === 'published') @else @endif
@csrf @method('DELETE')
@endsection