@extends('themes.default1.agent.layout.agent') @section('Dashboard') class="active" @stop @section('dashboard-bar') active @stop @section('dashboard') class="active" @stop @section('content')
=',date('Y-m-d'))->get(); // echo count($tickets); ?>

{!! Lang::get('lang.line_chart') !!}


{!! Lang::get('lang.statistics') !!}

@foreach($departments as $department) id)->where('status','=',1)->count(); $resolve = App\Model\helpdesk\Ticket\Tickets::where('dept_id','=',$department->id)->where('status','=',2)->count(); $close = App\Model\helpdesk\Ticket\Tickets::where('dept_id','=',$department->id)->where('status','=',3)->count(); $delete = App\Model\helpdesk\Ticket\Tickets::where('dept_id','=',$department->id)->where('status','=',5)->count(); ?> @endforeach
{!! Lang::get('lang.department') !!} {!! Lang::get('lang.opened') !!} {!! Lang::get('lang.resolved') !!} {!! Lang::get('lang.closed') !!} {!! Lang::get('lang.deleted') !!}
{!! $department->name !!} {!! $open !!} {!! $resolve !!} {!! $close !!} {!! $delete !!}
@stop