BookStack/resources/views/partials/activity-list.blade.php
2015-08-16 20:11:21 +01:00

12 lines
350 B
PHP

{{--Requires an entity to be passed with the name $entity--}}
@if(count($activity) > 0)
<div class="activity-list">
@foreach($activity as $activityItem)
<div class="activity-list-item">
@include('partials/activity-item', ['activity' => $activityItem])
</div>
@endforeach
</div>
@endif