@extends('admin.layout') @section('title', 'Blog Yönetimi') @section('page-title', 'Blog Yönetimi') @section('content')

Blog Listesi

Tüm blogları buradan yönetebilirsiniz

Yeni Blog Ekle
@if($blogs->count() > 0)
@foreach($blogs as $blog) @endforeach
ID Başlık Kategori Durum Oluşturulma İşlemler
{{ $blog->id }} {{ Str::limit($blog->title, 50) }}
{{ Str::limit($blog->slug, 40) }}
@if($blog->category) {{ $blog->category->name }} @else Kategori yok @endif
@csrf @method('PATCH') @if($blog->status === 'published') @else @endif
{{ $blog->created_at->format('d.m.Y H:i') }}
@csrf @method('DELETE')
{{ $blogs->links() }}
@else

Henüz blog bulunmamaktadır.

İlk Blogu Oluştur
@endif
@endsection