@extends('adminlte::page') @section('title', 'Batch Assign Officers') @section('content_header')

Batch Assign Officers to Station

@stop @section('content')
@csrf
@error('station_id') {{ $message }} @enderror

Select Officers to Assign

@if($officers->count() > 0)
@foreach($officers as $officer) @endforeach
# Name Rank Badge Number Current Station
{{ $officer->name }} {{ $officer->rank ?? 'N/A' }} {{ $officer->badge_number ?? 'N/A' }} @if($officer->station) {{ $officer->station->name }} @else Not Assigned @endif
@else
No officers available for assignment.
@endif @error('officer_ids')
{{ $message }}
@enderror
Cancel
@stop @section('css') @stop @section('js') @stop