@extends('layouts.app') @section('title', __('report.reports')) @section('content') @include('crm::layouts.nav')

@lang('report.reports')

@component('components.widget', ['class' => 'box-solid', 'title' => __('crm::lang.follow_ups_by_user')])
{!! Form::label('follow_up_user_date_range', __('report.date_range') . ':') !!} {!! Form::text('follow_up_user_date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
@foreach($statuses as $key => $value) @endforeach
@lang('role.user') {{$value}} @lang('lang_v1.others') @lang('crm::lang.total_follow_ups')
@endcomponent
@component('components.widget', ['class' => 'box-solid', 'title' => __('crm::lang.follow_ups_by_contacts')]) @foreach($statuses as $key => $value) @endforeach
@lang('contact.contact') {{$value}} @lang('lang_v1.others') @lang('crm::lang.total_follow_ups')
@endcomponent
@component('components.widget', ['class' => 'box-solid', 'title' => __('crm::lang.lead_to_customer_conversion')])
  @lang('crm::lang.converted_by') @lang('sale.total')
@endcomponent
@endsection @section('javascript') @include('crm::reports.report_javascripts') @endsection