@extends('layouts.master') @section('page_title', $page_title) @section('content')
{{ Form::page_header($page_title, "business") }}
{{ Form::label_title("$total_hours Total Hours") }} {{ Form::label_title("$total_revenue Total Revenue") }}
{{ Form::label_title("$100/hour Goal: $one_hundo_per_hour Hours") }} {{ Form::label_title("$200/hour Goal: $two_hundo_per_hour Hours") }}
{{ Form::separator_row_empty() }}
@include('shared._pie_chart', [ 'error' => $by_department['error'], 'data' => $by_department['data'], 'title' => "Hours by Department", 'id' => 'department_pie_chart', ])
@include('shared._pie_chart', [ 'error' => $by_ticket_type['error'], 'data' => $by_ticket_type['data'], 'title' => "Hours by Ticket Type", 'id' => 'ticket_type_pie_chart', ])
@if($column_set->has_data())
@include('search._search_grid_table', compact('column_set'))
@endif
@endsection @section('page_script') @include('shared_script._chart_maker_script') @endsection @section('page_style') @include('shared_style._pie_chart_style') @endsection