]> BookStack Code Mirror - bookstack/blob - resources/views/entities/watch-action.blade.php
respective book and chapter structure added.
[bookstack] / resources / views / entities / watch-action.blade.php
1 <form action="{{ url('/watching/update') }}" method="POST">
2     {{ csrf_field() }}
3     {{ method_field('PUT') }}
4     <input type="hidden" name="type" value="{{ $entity->getMorphClass() }}">
5     <input type="hidden" name="id" value="{{ $entity->id }}">
6     <button type="submit"
7             name="level"
8             value="updates"
9             class="icon-list-item text-link">
10         <span>@icon('watch')</span>
11         <span>{{ trans('entities.watch') }}</span>
12     </button>
13 </form>