@extends('admin_base') @section('title', 'Blog Posts') @section('style') @endsection @section('content')
| Image | Title | Tags | Stats | Date | Actions |
|---|---|---|---|---|---|
|
|
{{ $blog->title }}
By {{ $blog->author->first_name . ' ' . $blog->author->last_name }}
|
{{ $blog->comments_count }}
@foreach(App\Models\BlogReaction::REACTIONS as $type => $reaction)
{{ $reaction['emoji'] }}
{{ $blog->reactions()->where('reaction_type', $type)->count() }}
@endforeach
|
{{ $blog->created_at->format('d M, Y h:i A') }}
{{ $blog->created_at->format('h:i A') }}
|
||
| No blog posts found. | |||||