@extends('layouts.app') @section('page-title', __('Contract Audit Trail')) @section('page-heading', __('Contract Audit Trail')) @section('styles') @endsection @section('content')

Contract Details

Title: {{ $contract->title }}

Current Status: {{ ucfirst($contract->status) }}

@foreach($versions as $index => $version)
Version {{ $versions->count() - $index }}
{{ $version->created_at->format('M d, Y H:i') }}
Status: {{ ucfirst($version->status) }}

Changed By: {{ $version->changedByUser->first_name }} {{ $version->changedByUser->last_name }}

Reason for Change: {{ $version->change_reason }}

Download PDF
@endforeach
@endsection @section('scripts') @endsection