@extends('backend.layouts.master') @section('title') Sort Members @endsection @section('main-content') @include('backend.layouts.notification')
@csrf

Sorted Teams by Category: {{ $selectedCategory->title }}

{{-- Display team information --}}
    @forelse($teams as $team)
  • {{ $team->name }}
  • @empty

    No teams found for the selected category.

    @endforelse
@push('scripts') @endpush @endsection