@extends('Admin.master_page') @section('title')
Team Members
@endsection @section('content')
@include('Admin.Team._filter')


@forelse($teams as $key => $team)
Team {{ $key + $teams->firstItem() }}

Full Name
{{ $team->en_full_name }}
{{ $team->da_full_name }}
{{ $team->pa_full_name }}
Position
{{ $team->en_position }}
{{ $team->da_position }}
{{ $team->pa_position }}
{{ csrf_field() }} {{ method_field('DELETE') }}
 
@empty @endforelse


@if (isset($_GET['search']) and $_GET['search'] != null) {{ $teams->appends(['search' => $_GET['search']])->links() }} @else {{ $teams->links() }} @endif



@endsection