ultimatepos/Modules/Crm/Resources/views/reports/index.blade.php

90 lines
3.7 KiB
PHP

@extends('layouts.app')
@section('title', __('report.reports'))
@section('content')
@include('crm::layouts.nav')
<section class="content no-print crm-page crm-legacy-page">
<div class="crm-page-header">
<div>
<h1><i class="fas fa-chart-line" style="color:#4f46e5;margin-left:8px;"></i> @lang('report.reports')</h1>
<p class="crm-subtitle">@lang('crm::lang.follow_ups_by_user')</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
@component('components.widget', ['class' => 'box-solid', 'title' => __('crm::lang.follow_ups_by_user')])
<div class="row">
<div class="col-md-4">
<div class="form-group">
{!! 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']); !!}
</div>
</div>
</div>
<table class="table table-bordered table-striped" id="follow_ups_by_user_table" style="width: 100%;">
<thead>
<tr>
<th>@lang('role.user')</th>
@foreach($statuses as $key => $value)
<th>
{{$value}}
</th>
@endforeach
<th>
@lang('lang_v1.others')
</th>
<th>
@lang('crm::lang.total_follow_ups')
</th>
</tr>
</thead>
</table>
@endcomponent
</div>
</div>
<div class="row">
<div class="col-md-12">
@component('components.widget', ['class' => 'box-solid', 'title' => __('crm::lang.follow_ups_by_contacts')])
<table class="table table-bordered table-striped" id="follow_ups_by_contact_table" style="width: 100%;">
<thead>
<tr>
<th>@lang('contact.contact')</th>
@foreach($statuses as $key => $value)
<th>
{{$value}}
</th>
@endforeach
<th>
@lang('lang_v1.others')
</th>
<th>
@lang('crm::lang.total_follow_ups')
</th>
</tr>
</thead>
</table>
@endcomponent
</div>
</div>
<div class="row">
<div class="col-md-12">
@component('components.widget', ['class' => 'box-solid', 'title' => __('crm::lang.lead_to_customer_conversion')])
<table class="table table-bordered table-striped" id="lead_to_customer_conversion" style="width: 100%;">
<thead>
<tr>
<th>&nbsp;</th>
<th>@lang('crm::lang.converted_by')</th>
<th>@lang('sale.total')</th>
</tr>
</thead>
</table>
@endcomponent
</div>
</div>
</section>
@endsection
@section('javascript')
@include('crm::reports.report_javascripts')
@endsection