@extends('layouts.app') @section('title', 'Emergency Response Team: ' . $team->name) @section('content')
Back

{{ $team->name }}

{{ ucfirst(str_replace('_', ' ', $team->team_type)) }} Team

Edit

Team Details

Team Name
{{ $team->name }}
Team Type
{{ ucfirst(str_replace('_', ' ', $team->team_type)) }}
@if($team->teamLeader)
Team Leader
{{ $team->teamLeader->name }}
@endif @if($team->deputyLeader)
Deputy Leader
{{ $team->deputyLeader->name }}
@endif
Team Members
{{ count($team->team_members ?? []) }} members
Availability
{{ $team->is_24_7 ? '24/7' : 'Scheduled' }}
Status
{{ $team->is_active ? 'Active' : 'Inactive' }}
@if($team->next_training_date)
Next Training Date
{{ $team->next_training_date->format('M d, Y') }}
@endif @if($team->description)
Description
{{ $team->description }}
@endif @if($team->responsibilities)
Responsibilities
{{ $team->responsibilities }}
@endif @if($team->notes)
Notes
{{ $team->notes }}
@endif
@endsection