{{ $organization->name }}
{{ session('success') }}
@endif
Информация
| Название: | {{ $organization->name }} |
|---|---|
| ИНН/КПП: | {{ $organization->inn ?? '—' }} / {{ $organization->kpp ?? '—' }} |
| Адрес: | {{ $organization->address ?? '—' }} |
| Email: | {{ $organization->email ?? '—' }} |
| Телефон: | {{ $organization->phone ?? '—' }} |
| Статус: | @if($organization->is_active) Активна @else Не активна @endif |
| Описание: | {{ $organization->description ?? '—' }} |
Статистика
{{ $organization->users->count() }}
Пользователей
{{ $organization->groups->count() }}
Групп
{{ $organization->courseRequests->count() }}
Заявок
Пользователи
Все пользователи
@if($organization->users->count() > 0)
-
@foreach($organization->users->take(5) as $user)
- {{ $user->name }} {{ $user->email }} @endforeach
+ ещё {{ $organization->users->count() - 5 }} пользователей
@endif
@else
Нет пользователей
@endif
@if($organization->groups->count() > 0)
-
@foreach($organization->groups->take(5) as $group)
-
{{ $group->name }} @if($group->description)
{{ Str::limit($group->description, 50) }} @endif
@endforeach
+ ещё {{ $organization->groups->count() - 5 }} групп
@endif
@else
Нет групп
@endif