@extends('frontend.layouts.app') @section('frontend-content')
@foreach($teams as $team)
# {{ trans('main-sidebar.team_name') }} {{ trans('main-sidebar.number_of_employees') }} {{ trans('main-sidebar.category') }} {{ trans('main-sidebar.date') }}
{{ $loop->index +1 }} {{ $team->name }} {{ $team->number_of_exams }} {{ $team->teamCategory->name }} {{ $team->created_at }}
@endforeach
@endsection @push('frontend-script') @endpush