@extends('admin.layouts.master') @section('title','Blogs History Page') @section('content')

Blog History — {{ $blog->title }}

@if($histories->count()) @foreach($histories as $history) @endforeach
# Action User Changes Date
{{ $loop->iteration }} {{ ucfirst($history->action) }} {{ $history->user?->username ?? 'System' }} @if(is_array($history->changes))
{{ json_encode($history->changes, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
@else No details @endif
{{ $history->created_at->format('Y-m-d H:i:s') }}
{{ $histories->links() }} {{-- pagination --}} @else

No history records found for this blog.

@endif
@endsection