{{ trans_object('teams') }} {{ trans('app.of') }} {{ $user->username }}
@foreach ($teams as $team)
{{ $team->title }}
@if (user())
@if (($team->isOrganizer($user) and user()->id == $user->id) or user()->isSuperAdmin())
{{ trans('app.edit') }}
{{ trans('app.delete') }}
@endif @if (user()->id == $user->id or user()->isSuperAdmin())
{{ trans('app.leave') }}
@endif
@endif
@endforeach
{!! HTML::fontIcon('plus') !!} {{ trans('app.new') }}