@extends('dashboard.layouts.app') @section('content')
Currency History: {{ $currency->currency }}
← Back
Change Logs
@if($logs->isEmpty())
No history logs found for this currency.
@else
    @foreach($logs as $log)
  • {{ $log->created_at->format('Y-m-d H:i') }}

    Updated by: {{ $log->editor->full_name ?? 'Unknown' }}

    Old Rate: {{ number_format($log->old_rate, 2) }}

    New Rate: {{ number_format($log->new_rate, 2) }}

    Default Status: {{ $log->new_default ? 'Yes (Default)' : 'No' }}

  • @endforeach
@endif
@endsection