@extends('layouts.frontend') @section('content')
@can('team_create') @endcan
{{ trans('cruds.team.title_singular') }} {{ trans('global.list') }}
@foreach($teams as $key => $team) @endforeach
{{ trans('cruds.team.fields.id') }} {{ trans('cruds.team.fields.type') }} {{ trans('cruds.team.fields.name') }} {{ trans('cruds.team.fields.owner') }}  
{{ $team->id ?? '' }} {{ App\Models\Team::TYPE_RADIO[$team->type] ?? '' }} {{ $team->name ?? '' }} {{ $team->owner->name ?? '' }} @can('team_show') {{ trans('global.view') }} @endcan @can('team_edit') {{ trans('global.edit') }} @endcan @can('team_delete')
@endcan
@endsection @section('scripts') @parent @endsection