@extends('layouts.ln_app')
@section('content')
-
-
@foreach($rows[1] as $header)
|
{{ $header }}
|
@endforeach
@foreach($rows as $index => $row)
@if($index > 1)
@if(str_contains($row['A'],"Zone"))
| {{$row['A']}} |
@continue
@endif
@foreach($row as $id=>$cell)
|
{{ $cell }}
|
@endforeach
@endif
@endforeach
@endsection