@extends('layouts.app') @section('title', 'Reports') @section('nav_reports', 'bg-teal-50 text-teal-700 font-semibold') @section('page_title', 'Reports') @section('page_subtitle', 'Choose a report to view') @section('content') @if(empty($groups))

You don't have access to any reports.

@else
@foreach($groups as $groupName => $items)

{{ $groupName }}

@foreach($items as $r)

{{ $r['title'] }}

{{ $r['desc'] }}

@endforeach
@endforeach
@endif @endsection