Группы организации

К организации @can('create', App\Models\Group::class) Добавить группу @endcan
@if(session('success')) @endif @if(session('error')) @endif
@forelse($groups as $group) @empty @endforelse
ID Название Описание Пользователей Статус Действия
{{ $group->id }} {{ $group->name }} {{ Str::limit($group->description, 50) ?? '—' }} {{ $group->users_count }} @if($group->is_active) Активна @else Не активна @endif
@can('update', $group) @endcan @can('delete', $group)
@csrf @method('DELETE')
@endcan

В этой организации пока нет групп

@if($groups->hasPages())
{{ $groups->links() }}
@endif