{{ $total }}
teams
create team
@foreach ( $teams as $key => $team )
{{-- change this into this below --}}
{{-- --}}
{{$team->id}}
@if($team->id === 1) follow @endif
owner
@if($user->id == $team->owner->id)
YOU
@else
{{ $team->owner->name }}
@endif
{{ $team->uuid }}
name
{{ $team->tag }}
name
{{ $team->name }}
description
@if(is_null($team->description)) {{__('None')}} @endif {{ $team->description }}
@php $updatedAt = Carbon\Carbon::parse($team->updated_at); $updated = $updatedAt->format('D d M Y'); @endphp {{ $updated }}
@php $createdAt = Carbon\Carbon::parse($team->created_at); $created = $createdAt->format('D d M Y'); @endphp {{ $created }}
button
@endforeach
{{ $teams->links() }}