@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('status_filter', __('sale.status') . ':') !!}
{!! Form::select('status_filter', $statuses, null, ['class' => 'form-control select2', 'id' => 'status_filter', 'placeholder' => __('messages.all')]); !!}
@can('crm.access_all_leads')
{!! Form::label('assigned_to_filter', __('crm::lang.assgined') . ':') !!}
{!! Form::select('assigned_to_filter', $users, null, ['class' => 'form-control select2', 'id' => 'assigned_to_filter', 'placeholder' => __('messages.all')]); !!}
@endcan
@endcomponent
@component('components.widget', ['class' => 'box-primary', 'title' => __('crm::lang.phone_list')])
@slot('tool')
@endslot
| @lang('messages.action') |
@lang('lang_v1.contact_no') |
@lang('contact.name') |
@lang('sale.status') |
@lang('crm::lang.follow_up_count') |
@lang('crm::lang.last_follow_up') |
@lang('crm::lang.assgined') |
@lang('crm::lang.lead') |
@if(config('constants.enable_crm_call_log'))
@lang('crm::lang.call_log') |
@endif
@endcomponent
@endsection
@section('javascript')
@php
$non_orderable_cols = config('constants.enable_crm_call_log') ? [0, 7, 8] : [0, 7];
@endphp
@endsection