@extends('layout.app') @section('styles') @endsection @section('content')
| # | Employee Name | Pending Count | Share |
|---|---|---|---|
| {{ $index + 1 }} |
{{ $data['user']->name }}
|
{{ $data['count'] }} |
@php
$share =
($total_pending_new_line_request ?? 0) > 0
? round(
($data['count'] / $total_pending_new_line_request) * 100,
)
: 0;
@endphp
|
| Total | {{ $total_pending_new_line_request ?? 0 }} | 100% | |
| # | User Name | Pending Count | Share |
|---|---|---|---|
| {{ $loop->iteration }} |
{{ $data['user_name'] }}
|
{{ $data['count'] }} |
@php
$share =
($total_48h_pending ?? 0) > 0
? round(($data['count'] / $total_48h_pending) * 100)
: 0;
@endphp
|
| Total | {{ $total_48h_pending ?? 0 }} | 100% | |