@extends('layouts.admin.index') @section('content')
@include('error-success')
{{ Form::select('filter_type', $filterOptions, $selectedFilterName, ['class' => 'form-select', 'id' => 'filter-type']) }}
{{ Form::select('category[]', $categories, $selectedOptions, [ 'class' => 'form-control multiselect form-select', 'id' => 'categoty-filter-select', 'multiple' => 'multiple', 'data-include-select-all-option' => 'data-include-select-all-option', ]) }}
{{ Form::select('service[]', $serviceOptions, $selectedOptions, [ 'class' => 'form-control multiselect form-select', 'id' => 'service-filter-select', 'multiple' => 'multiple', 'data-include-select-all-option' => 'data-include-select-all-option', ]) }}
{{ Form::select('status[]', $statusOptions, $selectedOptions, [ 'class' => 'form-control multiselect form-select', 'id' => 'status-filter-select', 'multiple' => 'multiple', 'data-include-select-all-option' => 'data-include-select-all-option', ]) }}
{{ Form::select('advisor[]', $advisorOptions, $selectedOptions, [ 'class' => 'form-control multiselect form-select', 'id' => 'advisor-filter-select', 'multiple' => 'multiple', 'data-include-select-all-option' => 'data-include-select-all-option', ]) }}
{{ Form::select('customer[]', $customerOptions, $selectedOptions, [ 'class' => 'form-control multiselect form-select', 'id' => 'customer-filter-select', 'multiple' => 'multiple', 'data-include-select-all-option' => 'data-include-select-all-option', ]) }}
ID Advisor Name Customer Name Status Session Type Amount($) Actions
@endsection @section('script') @endsection