@extends('layouts.app') @section('content')
@component('components.breadcrumb', [ 'links' => [['name' => 'Manage users', 'url' => ''], ['name' => 'Groups', 'url' => '']], ]) @endcomponent {{-- --}} New Group
@include('layouts.partials.toast')
@foreach ($groups as $item) @endforeach
Name Description Private Status Limit Actions
{{ $item->name }} {{ $item->description ?? null }} {{ $item->is_private ? 'Yes' : 'No' }} {{ $item->is_active ? 'Active' : 'Deactivated' }} {{ $item->limit ?? 0 }}
ROWS PER PAGE:
{{ $groups->links('pagination::bootstrap-5') }}
{{-- @include('dashboard.groups.create') --}} @endsection