1
0
cms11/resources/views/components/asides/distribution.blade.php

16 lines
426 B
PHP
Raw Normal View History

2024-04-26 13:47:36 +02:00
@props(['subCategory', 'items', 'bundle'])
<h4>{!! $subCategory !!}</h4>
<div class="two-columns">
@foreach($items as $people => $data)
<h4>{!! \App\Classes\Term::register($people, 'Distribution', $bundle)->render() !!}</h4>
<div>
@foreach($data as $type => $roles)
@foreach($roles as $role)
<p>{{ $role }}</p>
@endforeach
@endforeach
</div>
@endforeach
</div>