@extends('advancedreports::layouts.app') @section('title', __('advancedreports::lang.customer_behavior_analytics')) @section('content')

{{ __('advancedreports::lang.customer_behavior_analytics')}} @lang('advancedreports::lang.analyze_customer_purchase_patterns')

@component('components.filters', [ 'title' => __('Filters'), 'class' => 'box-primary' ])
{!! Form::label('cb_date_range', __('Date Range:')) !!} {!! Form::text('cb_date_range', null, ['placeholder' => __('Select Date Range'), 'class' => 'form-control', 'id' => 'cb_date_range', 'readonly']) !!}
{!! Form::label('cb_location_id', __('Location:')) !!} {!! Form::select('cb_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('All Locations'), 'id' => 'cb_location_id']) !!}
{!! Form::label('cb_customer_id', __('Customer:')) !!} {!! Form::select('cb_customer_id', $customers, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('All Customers'), 'id' => 'cb_customer_id']) !!}
{!! Form::label('cb_category_id', __('Category:')) !!} {!! Form::select('cb_category_id', $categories, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('All Categories'), 'id' => 'cb_category_id']) !!}

@endcomponent
@endsection @section('javascript') @endsection