@extends('adminlte::page')
@section('title', config('app.name') . ' | ' . __('messages.teams.m_teams_page'))
@section('content_header')
{{config('app.name')}} / {{__('messages.teams.m_teams_page')}}
@stop
@section('js')
@stop
@section('content')
@if($team->openJoin == false)
@endif
Team members and pending invites will appear here.
@if (!$team->users->isEmpty())
# |
Name |
Roles |
Status |
Actions |
@foreach ($team->users as $teammate)
{{ $teammate->id }} |
{{ $teammate->name }} |
@foreach ($teammate->roles as $teammate_role)
{{ $teammate_role->name }}
@endforeach
|
@if ($teammate->isOwnerOfTeam($team))
Team Owner
@else
Team Member
@endif
|
|
@endforeach
@else
There don't seem to be any teammates here!
Start inviting some people and grow your team.
@endif
The vacancies you select determine what applications your team members see. All applications under the vacancies you choose will be displayed.
@stop