@extends('layouts.portal') @section('content')

User LOA Requests

You can submit a new request from the Settings Page.

Request LOA


LOA Start Date: {{ $loa->start_date->format('m/d/Y') }}

LOA End Date: {{ $loa->end_date->format('m/d/Y') }}

Reason:
{{ $loa->reason }}

@method('delete') @csrf

@forelse ($loa_history as $history)

{{ $history->user->preferred_name }} @ {{ $history->created_at->format('m/d/Y H:i') }}

{{ $history->description }}

@empty

No History

@endforelse
@endsection