@extends('layout.admin') @section('content')

Athlets

@if(0 < count($athlets))
@foreach($athlets as $key => $athlet) @endforeach
First name Last name sport Position Servey code Date
{{ $athlet->first_name }} {{ $athlet->last_name }} {{ $athlet->sport }} {{ $athlet->position }} {{ Carbon\Carbon::parse($athlet->created_at)->formatLocalized('%A %d %B %Y') }} Questions
{{ $athlets->links() }}
@else
Athletes do not exist
@endif
@endsection