@extends('admin.layouts.app') @section('content')
@if($teams->isEmpty()) @else @php $counter = ($teams->currentPage() - 1) * $teams->perPage() + 1; @endphp @foreach($teams as $team) @php $counter++; @endphp @endforeach @endif
Team ID Photo Position Control

There are no Teams to be shown

{{$counter}} {{$team->name}} {{$team->position}} Identity Photo {{$team->created_at->format('d / m / Y') }}
@csrf @method('DELETE') Edit
{{ $teams->onEachSide(5)->links() }}
@endsection