@extends('layouts.frontend') @section('content')
@if(session('success')) @endif
{{ trans('cruds.team.title') }}
{{ trans('cruds.team.fields.id') }} {{ trans('cruds.team.title') }} {{ $team->id }}
{{ trans('cruds.team.fields.logo') }} @if($team->logo) @endif
{{ trans('cruds.team.fields.name') }} {{ $team->name }}
{{ trans('cruds.team.fields.owner') }} {{ $team->owner->name ?? '' }}
{{ trans('global.actions') }} @if ($team->owner_id == Auth::id()) {{ trans('global.edit') }} {{ trans('cruds.team.title') }} @endif {{ trans('global.team-management') }}
@includeIf('frontend.teams.relationships.teamBranches', ['branches' => $team->teamBranches])
@endsection