@extends('layouts.app') @section('title', session('company_code') . ' Elite System') @section('header') Dashboard @endsection @section('body')
| BRANCH | SUBJECT | DESCRIPTION | DATE UPDATED | UPDATED BY | STATUS |
|---|---|---|---|---|---|
| {{ str_replace(' Branch', '', $history->branch_name) }} | @if (strlen($history->incident_subject) > 40) {!! substr($history->incident_subject, '0', '40') . '...' !!} @else {!! $history->incident_subject !!} @endif | @if (strlen($history->incident_description) > 80) {!! substr($history->incident_description, '0', '80') . '...' !!} @else {!! $history->incident_description !!} @endif | {{ \Carbon\Carbon::parse($history->updated_at)->format('M d, Y h:i A') }} | {{ strtoupper($history->updated_name) }} | @if ($history->status == "pending") @elseif ($history->status == "approved") @elseif ($history->status == "for endorsement") @elseif ($history->status == "endorsed") @elseif ($history->status == "accepted") @elseif ($history->status == "ongoing") @elseif ($history->status == "accomplished") @elseif ($history->status == "acknowledged") @elseif ($history->status == "declined") @elseif ($history->status == "not applicable") @elseif ($history->status == "cancelled") @endif |