@extends('layouts.app') @push('pageTitle') {{ __('labels.group_sessions') }} @endpush @push('css') @endpush @push('js') @endpush @section('content')
| # | {{ __('labels.group_name') }} | {{ __('labels.total_members') }} | {{ __('labels.last_activity') }} | {{ __('labels.actions') }} | ||
|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ strtoupper(substr($item->name, 0, 2)) }}
{{ $item->name }}@if ($item->creator) {{ $item->author_name ?? (auth()->check() ? auth()->user()->name : null) }} @endif |
{{ $item->total_members ?? '0' }} | @if ($item->last_activity_at) {{ \Carbon\Carbon::parse($item->last_activity_at)->diffForHumans() }} @else - @endif | |||
|
{{ __('labels.no_groups_found') }} |
||||||