]> BookStack Code Mirror - bookstack/blob - resources/views/partials/activity-list.blade.php
Added activity history to to all entities. Fixes #12
[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