@extends('layouts.userapp') @section('content') @php use Carbon\Carbon; @endphp @if ($message = Session::get('success'))
{{ $prClaim->title }}
@if($prClaim->claim_type === 'ot') OT @else Claim @endif
@if($prClaim->status == 'pending') Pending @elseif($prClaim->status == 'approved') Approved @elseif($prClaim->status == 'rejected') Rejected @elseif($prClaim->status == 'escalated') Escalated @endif
{{ Carbon::parse($prClaim->submission_date)->format('d F Y') }}
{{ $prClaim->created_by_name }}
{{ $prClaim->created_by_email }}
{{ $prClaim->send_to_name }}
{{ $prClaim->send_to_email }}
{{ $prClaim->escalation_reason }}
| Step | User | Action | Date/Time |
|---|---|---|---|
| {{ $index + 1 }} |
{{ $record->username }} {{ $record->email }} |
@if($record->action == 'created')
Created PR Claim
@elseif($record->action == 'escalated')
Escalated
@if($record->comments)
Reason: {{ $record->comments }} @endif @elseif($record->action == 'approved') Approved @elseif($record->action == 'rejected') Rejected @else {{ ucfirst($record->action) }} @endif |
{{ Carbon::parse($record->created_at)->format('d M Y, h:i A') }} |
| {{ count($history) + 1 }} |
{{ $prClaim->send_to_name }} {{ $prClaim->send_to_email }} |
Pending Review | Awaiting Action |