@extends('layouts.admin-simple') @section('title', 'Pending Approval - Outgoing Transactions') @section('content')
Review and approve pending outgoing transactions
| Reference | Date | Project | Division | Requested By | Type of Goods | Receiver | Days Pending | Actions |
|---|---|---|---|---|---|---|---|---|
|
{{ $transaction->reference_number }}
@if($transaction->material_request_number)
{{ $transaction->material_request_number }} @endif |
{{ $transaction->transaction_date->format('M d, Y') }}
{{ $transaction->transaction_date->format('l') }} |
@if($transaction->project)
{{ $transaction->project->project_name }}
@if($transaction->project->project_number)
{{ $transaction->project->project_number }} @endif @else N/A @endif |
@if($transaction->division) {{ $transaction->division->name }} @else N/A @endif |
@if($transaction->requester)
{{ $transaction->requester->name }}
@if($transaction->requester->role)
{{ $transaction->requester->role->display_name ?? $transaction->requester->role->name }} @endif @else N/A @endif |
{{ $transaction->type_of_goods }} | {{ $transaction->receiver_name }} | @php $daysPending = $transaction->created_at->diffInDays(now()); @endphp {{ $daysPending }} {{ Str::plural('day', $daysPending) }} |
All outgoing transactions have been processed!
dashboard View All Transactions