@extends('admin.layouts.master') @section('title','Blogs History Page') @section('content')
| # | 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') }} |
No history records found for this blog.
@endif