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

@lang('crm::lang.phone_list')

@lang('crm::lang.phone_list_subtitle')

@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')
@lang('crm::lang.import_phone_list')
@endslot
@if(config('constants.enable_crm_call_log')) @endif
@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')@lang('crm::lang.call_log')
@endcomponent
@endsection @section('javascript') @php $non_orderable_cols = config('constants.enable_crm_call_log') ? [0, 7, 8] : [0, 7]; @endphp @endsection