@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)
@csrf
This user will receive an email notification asking them to join your team.
@endif

Team members and pending invites will appear here.

@if (!$team->users->isEmpty()) @foreach ($team->users as $teammate) @endforeach
# Name Roles Status Actions
{{ $teammate->id }} {{ $teammate->name }} @foreach ($teammate->roles as $teammate_role) {{ $teammate_role->name }} @endforeach @if ($teammate->isOwnerOfTeam($team)) Team Owner @else Team Member @endif
@else
There don't seem to be any teammates here!

Start inviting some people and grow your team.

@endif
Edit illustration

Edit Team

@csrf @method('PATCH')
Markdown supported
openJoin == 1) ? 'checked' : '' }} name="joinType" id="jointype" data-toggle="toggle" data-on="Public Team" data-off="Private" data-onstyle="success" data-offstyle="danger" data-width="100">

Team Vacancies

The vacancies you select determine what applications your team members see. All applications under the vacancies you choose will be displayed.
@stop