@extends('admin::excel.header')
@section('content')
@foreach (array_values($titles) as $col)
@php
if($col == 'Work Order Updates' || $col == 'Asset Details' || $col == 'Description/Complaint'){
$width = '230px';
}
else{
$width = '90px';
}
if ($col == 'Created By' || $col == 'Requested By' || $col == 'Technicians') {
$width = '120px';
}
if ($col == 'Problem List') {
$width = '120px';
}
@endphp
{{ $col }} |
@endforeach
@stop
@section('title')
Sub Location Report
@stop