@php use \koolreport\widgets\koolphp\Table; @endphp @extends('layouts.dashboard') @section('title', 'Reports') @section('content') @section('myJS') @endsection
@foreach($reportcats as $reportcat)
@if ($reportcat->ReportCategoryColor == "orange")
@else
@endif

{{ $reportcat->ReportCategoryName }}

@foreach($reports as $report) @if($report->ReportCategoryID == $reportcat->ReportCategoryID)
{{ $report->ReportDescription }}
@endif @endforeach
@endforeach
@endsection