@extends('layouts.app') @section('content')
@widget('Modules\Dashboard\Widgets\CountWidget',['title' => trans('dashboard::dashboard.widgets.leads'),'bg_color'=>'bg-pink','icon'=>'search','counter' => $countLeads]) @widget('Modules\Dashboard\Widgets\CountWidget',['title' => trans('dashboard::dashboard.widgets.contacts'),'bg_color'=>'bg-cyan','icon'=>'contacts','counter' => $countContacts]) @widget('Modules\Dashboard\Widgets\CountWidget',['title' => trans('dashboard::dashboard.widgets.orders'),'bg_color'=>'bg-orange','icon'=>'pageview','counter' => $countOrders]) @widget('Modules\Dashboard\Widgets\CountWidget',['title' => trans('dashboard::dashboard.widgets.invoices'),'bg_color'=>'bg-green','icon'=>'shopping_cart','counter' => $countInvoices])
@lang('core::core.this_month')

@lang('dashboard::dashboard.widgets.leads_chart')

{!! $leadOverview->container() !!}
@lang('core::core.last_three_months') @lang('core::core.dict.usd')

@lang('dashboard::dashboard.widgets.income_vs_expenses')

{!! $incomeVsExpense->container() !!}

@lang('dashboard::dashboard.widgets.tickets')

{{ $ticketDatatable->table(['width' => '100%']) }}
@lang('core::core.this_month')

@lang('dashboard::dashboard.widgets.tickets_overview')

@lang('dashboard::dashboard.widgets.tickets_by_status')
{!! $ticketStatusOverview->container() !!}


@lang('dashboard::dashboard.widgets.tickets_by_priority')
{!! $ticketPriorityOverview->container() !!}
@endsection @push('css-up') @endpush @push('scripts') @push('scripts') {!! $leadOverview->script() !!} {!! $incomeVsExpense->script() !!} {!! $ticketStatusOverview->script() !!} {!! $ticketPriorityOverview->script() !!} @endpush @push('scripts') {!! $ticketDatatable->scripts() !!} @endpush