@php
$items = [
[
'id' => 'letter-head',
'title' => 'Letter Head',
'desc' => 'Blank branded header for official hospital correspondence',
'icon' => 'M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z',
'url' => route('branch.stationary.letter-head'),
'tag' => 'Official'
],
[
'id' => 'opd-slip',
'title' => 'Blank OPD Slip',
'desc' => 'Medical format with vitals grid for manual consultations',
'icon' => 'M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z',
'url' => route('branch.stationary.opd-slip'),
'tag' => 'Clinical'
],
[
'id' => 'no-dues',
'title' => 'No Dues Slip',
'desc' => 'Departmental clearance format for patient discharge',
'icon' => 'M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4',
'url' => route('branch.stationary.no-dues'),
'tag' => 'Administrative'
]
];
@endphp
@foreach($items as $item)
{{ $item['title'] }}
{{ $item['desc'] }}
@endforeach