@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') @endsection @section('content')
New Team illustration
@csrf

This is the name team members will see.

Team illustration

{{ __('messages.teams.m_teams_page') }} {{ (Auth::user()->currentTeam) ? Auth::user()->currentTeam->name : 'Select a team' }}

@if (!$teams->isEmpty()) @foreach ($teams as $team) @endforeach
# Team Owner Team Name Actions
{{ $team->id }} {{ $team->owner_id }} {{ $team->name }}
@else
There don't seem to be any teams here

Have you tried creating or joining a team? You may also click an invite link if you've been invited.

@endif
@stop