@extends('layouts.app') @section('title', 'Add Schools to Payment Planning Task') @section('content')

Add Schools

Select schools to add to {{ $task->title }}

Back to Details
@include('partials.alerts')
@csrf
@forelse($allSchools as $school) @php $isAdded = in_array($school->name, $addedSchoolNames); @endphp @empty @endforelse
School Name Contact Number Status
@if(!$isAdded) @else - @endif {{ $school->name }} {{ $school->contact_number ?? '-' }} @if($isAdded) Already Added @else Not Added @endif
No schools available. Please add schools first.
Cancel
@endsection