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

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

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('contact_id', __('contact.contact') . ':') !!} {!! Form::select('contact_id', $contacts, null, ['class' => 'form-control select2', 'id' => 'contact_id', 'placeholder' => __('messages.all')]); !!}
@can('crm.view_all_call_log')
{!! Form::label('user_id', __('crm::lang.call_log_created_by') . ':') !!} {!! Form::select('user_id', $users, null, ['class' => 'form-control select2', 'id' => 'user_id', 'placeholder' => __('messages.all')]); !!}
@endcan
{!! Form::label('call_log_date_range', __('report.date_range') . ':') !!} {!! Form::text('call_log_date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
@endcomponent @component('components.widget', ['class' => 'box-solid']) @if($is_admin) @endif @if($is_admin) @endif
@lang('restaurant.start_time') @lang('restaurant.end_time') @lang('crm::lang.call_duration') @lang('crm::lang.call_type') @lang('lang_v1.contact_no') @lang('report.contact') @lang('role.user') @lang('crm::lang.call_log_created_by')
{!! Form::open(['url' => action([\Modules\Crm\Http\Controllers\CallLogController::class, 'massDestroy']), 'method' => 'post', 'id' => 'mass_delete_form' ]) !!} {!! Form::hidden('selected_rows', null, ['id' => 'selected_rows']); !!} {!! Form::submit(__('lang_v1.delete_selected'), array('class' => 'btn btn-xs btn-danger', 'id' => 'delete-selected')) !!} {!! Form::close() !!}
@endcomponent
@endsection @section('javascript') @endsection