@extends('backend.app') @section('title', 'List of Teams') @push('style') @endpush @section('content') {{-- PAGE-HEADER --}} {{-- PAGE-HEADER --}}
Reorder team
Drag the handle to change display order.
@forelse ($teams as $team)
@if ($team->image) image @else
No image
@endif
#{{ $team->order }}
{{ $team->name ?? 'N/A' }}
{{ $team->designation ?? '' }}
{{ strip_tags($team->description ?? '') }}
@empty
No team members found.
@endforelse
@endsection @push('scripts') @endpush