@extends('layouts.app') @section('content')
@forelse($logs as $log)

{{ $log->title }}

{{ $log->created_at->format('M d, Y') }} • By {{ $log->creator->name ?? 'System' }}

Decision

{{ $log->decision }}

@if($log->context)

Context

{{ $log->context }}

@endif

Impact Assessment

"{{ $log->impact ?? 'Standard operational impact' }}"

@empty @endforelse
{{ $logs->links() }}
@endsection