Staff send exported requests to the Registrar and publishers. Exporting a request does not send it or confirm fulfillment.

Registrar request

Eligible scholarship students with empty course and section columns for the Registrar to complete.

{!! \App\Support\Ui::post_form('export',$sid,'','Download Registrar request') !!}

Publisher request

Outstanding quantities by course and ISBN. Kortext requests include student details for direct provisioning.

@php $options='';foreach($records->publishers([$sid]) as $r)$options.='';echo \App\Support\Ui::post_form('export',$sid,'','Download publisher request');@endphp

Request history

Repeated downloads of an unchanged request reuse its history entry. Files represent current outstanding demand; they are not additional orders.

{!! \App\Support\Ui::table(['Created (UTC)','Type','Publisher','Rows'],array_map(fn($r)=>[e($r['created_at']),e($r['kind']),e($r['publisher']?:'Registrar'),count(json_decode($r['snapshot'],true))],$records->requestHistory([$sid]))) !!}
@if(isset($records->paginators['requests']))@include('components.pagination',['paginator'=>$records->paginators['requests']])@endif