@extends('app.template') @section('title', 'Review Result - COLI') @section('content')
Review Result
@if(count($header) > 0 && $paginatedRows->count() > 0)
@foreach($header as $col) @endforeach @forelse($paginatedRows as $row) @foreach($row as $cell) @endforeach @empty @endforelse
{{ $col }}
{{ $cell }}
No data to display.
{{ $paginatedRows->withQueryString()->links('pagination::bootstrap-4') }}
@else
No parsing result to display.
@endif Back
@endsection