]> BookStack Code Mirror - bookstack/blob - resources/views/partials/activity-list.blade.php
fb8f4b8d3230bc1e0c44689f43a37df05d9b376d
[bookstack] / resources / views / partials / activity-list.blade.php
1
2 {{--Requires an entity to be passed with the name $entity--}}
3
4 @if(count($entity->recentActivity()) > 0)
5     <div class="activity-list">
6         @foreach($entity->recentActivity() as $activity)
7             <div class="activity-list-item">
8                 @include('partials/activity-item')
9             </div>
10         @endforeach
11     </div>
12 @endif