|
{{ $companyname->v4_value }} |
Branches
|
{{ $timedate }} |
@foreach ($arrColumns as $key => $arrColumn)
@if (!in_array($key, json_decode($columnHideShowData)))
|
{{ $arrColumn }} |
@endif
@endforeach
@php $total=0; @endphp
@foreach ($branches as $branch)
@php
$total = $total + $branch->employee;
@endphp
@php
$arrRows = [$branch->name, $branch->description, $branch->email, $branch->forecast, $branch->employee, $branch->percent];
@endphp
@for ($k = 0; $k < count($arrRows); $k++)
@if (!in_array($k, json_decode($columnHideShowData)))
| {{ $arrRows[$k] }} |
@endif
@endfor
@endforeach
| Total |
{{ $total }}
|