@extends('layouts.main') @section('title', 'Customer') @section('content') @push('head') @endpush
@include('include.message')
@can('create-customer') @endcan
@csrf
{!! Form::select('active_statuses[]', $activeStatusList, null,[ 'class'=>'form-control select2', 'multiple' => true]) !!}
{{ __('ID')}} {{ __('Full Name')}} {{ __('Phone Numbers')}} {{ __('City')}} {{ __('customer Balances')}} {{ __('Last Activate Date')}} {{ __('Referral ID')}} {{ __('Active Label')}} {{ __('Change Status')}} {{ __('Action')}}
@canany(['bulk-delete-customer', 'bulk-restore-customer'])
@endcan
@push('script') @endpush @endsection