@extends('layouts.app') @section('content')

Customer Groups

@include('validate')

Customer Groups

@if($action == 'CREATE')
@csrf
@endif @if($action == 'UPDATE')
@csrf @method('PUT')
@endif
@forelse ($customergroupsList as $groupKey => $group) @empty @endforelse
# Group Name Customers Count Action
{{ $groupKey+1 }} {{ $group->group_name }} {{ $group->customers->count() }}
No Details Found.
@endsection @push('scripts') @endpush