@extends('layout') @section('title','Manage Customer Group') @section('content')
Customer Group Manager
@csrf
@error('group_name')
{{ $message }}
@enderror
@if(!isset($customer_group_edit))
@endif
@php $selectedCustomers = explode(',', $customer_group_edit->customer_ids ?? ''); // Get only the first value from the list @endphp @foreach($customerId as $customers)
id, $selectedCustomers)) checked @endif>
@endforeach

@foreach($customer_group as $customer_groups)
@endforeach
@endsection