@extends('layouts/default') @section('title') {{ trans('admin/hardware/general.fulfill_multiple') }} @parent @stop @section('content') {{-- Check-all toggle. Uses the shared data-toggle="check-all" handler from snipeit.js which walks the closest form and toggles every non-disabled checkbox. Sits in the col-md-3 label slot so it lines up with each row's checkbox below. Wrapped in a .form-control label (same shape as the row- level ) so the checkbox + text stay inline instead of wrapping to two lines. --}}
{{-- One row per pending CheckoutRequest, ordered oldest-first (waiting-list). Admin ticks the ones to fulfill; rows left unchecked stay pending. Qty defaults to what was requested; the controller re-checks under lock during the transaction so a stale page load can't over- fulfill on submit. --}} @foreach ($pendingRequests as $request) @endforeach
@stop