@extends('layouts.app') @section('title', __('lang_v1.contacts_long_time_not_active_report')) @section('content')

{{ __('lang_v1.contacts_long_time_not_active_report') }}

@component('components.filters', ['title' => __('report.filters')]) {!! Form::open([ 'url' => action([\App\Http\Controllers\ReportController::class, 'getContactsLongTimeNotActive']), 'method' => 'get', 'id' => 'getContactsLongTimeNotActive_form', ]) !!}
{!! Form::label('product_sr_date_filter', __('report.date_range') . ':') !!} {!! Form::text('date_range', null, [ 'placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'product_sr_date_filter', 'readonly', ]) !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations ?? [], null, [ 'class' => 'form-control select2', 'placeholder' => __('messages.all'), 'style' => 'width:100%', 'id' => 'location_id', ]) !!}
{!! Form::select('cg_filter', $customer_groups, null, ['class' => 'form-control', 'id' => 'cg_filter']) !!}
{!! Form::close() !!} @endcomponent
@component('components.widget', ['class' => 'box-solid'])
@lang('report.contact_name') @lang('report.contact_id') @lang('report.last_transaction_date') @lang('report.time_since_last_transaction') @lang('report.last_transaction_final_total')
@endcomponent
@endsection @section('javascript') @endsection