@extends('layouts.app') @section('title', $reportTitle) @section('content')

Expense Reports

{{ $reportTitle }}
@if(session('success')) @endif
{{-- Sidebar --}}
Report Type
@foreach($reports as $key => $label) {{ $label }} @endforeach
{{-- Main --}}
{{-- Filters --}}
@if($reportType === 'trend')
@endif @if($reportType === 'top_items')
@endif
Reset
{{-- Report content --}} @include('expense_reports.partials.' . $reportType)
@endsection