@extends('layouts.template') @section('content')
Acting Requests
| Requested By | Type | From | To | Status | Remark | @foreach ($data as $item) @if ($item->acting_status === 'pending') @if ($item->acting_officer === Auth::user()->id){{ $item->user_name }} | {{ $item->type }} | {{ $item->leave_from }} | {{ $item->leave_to }} | @if ($item->acting_status === 'pending')Pending | @elseif ($item->acting_status === 'approved')Approved | @elseRejected | @endif @if ($item->acting_status === 'pending')@else | @endif @endif @endif @endforeach |
|---|