@extends('layouts.admin') @section('title', __('Customer Groups')) @section('page-title', __('Customer Groups')) @section('content')
| {{ __('Name') }} | {{ __('Description') }} | {{ __('Customers') }} | {{ __('Type') }} | {{ __('Created') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
|
{{ $group->name }}
|
{{ Str::limit($group->description ?? '-', 50) }}
|
{{ $group->customers_count }} | @if($group->is_system) {{ __('System') }} @else {{ __('Custom') }} @endif | {{ $group->created_at->format('M d, Y') }} |
|
| {{ __('No customer groups found.') }} | |||||