@extends('advancedreports::layouts.app') @section('title', __('Customer Lifetime Value Report')) @section('css') @endsection @section('content')

{{ __('Customer Lifetime Value Report') }} {{ __('Analyze customer value, segmentation, and churn prediction') }}

@component('components.filters', [ 'title' => __('Filters'), 'class' => 'box-primary' ])
{!! Form::label('clv_date_range', __('Date Range:')) !!} {!! Form::text('clv_date_range', null, ['placeholder' => __('Select Date Range'), 'class' => 'form-control', 'id' => 'clv_date_range', 'readonly']) !!}
{!! Form::label('clv_location_id', __('Location:')) !!} {!! Form::select('clv_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('All Locations'), 'id' => 'clv_location_id']) !!}
{!! Form::label('clv_customer_group_id', __('Customer Group:')) !!} {!! Form::select('clv_customer_group_id', [], null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('All Groups'), 'id' => 'clv_customer_group_id']) !!}

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