@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('Teams')) @section('content_header')

{{config('app.name')}} / {{__('Teams')}}

@stop @section('js') @endsection @section('content')
New Team illustration
@csrf

{{ __('This is the name team members will see.') }}

{{ __('Team illustration') }}

{{ __('Teams') }} {{ (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