2023-08-02 08:14:00 -04:00
|
|
|
<form action="{{ url('/watching/update') }}" method="POST">
|
2023-07-31 10:23:28 -04:00
|
|
|
{{ csrf_field() }}
|
2023-08-02 08:14:00 -04:00
|
|
|
{{ method_field('PUT') }}
|
2023-09-10 10:18:31 -04:00
|
|
|
<input type="hidden" name="type" value="{{ $entity->getMorphClass() }}">
|
2023-07-31 10:23:28 -04:00
|
|
|
<input type="hidden" name="id" value="{{ $entity->id }}">
|
2023-08-02 08:14:00 -04:00
|
|
|
<button type="submit"
|
|
|
|
name="level"
|
|
|
|
value="updates"
|
|
|
|
class="icon-list-item text-link">
|
2023-07-31 10:23:28 -04:00
|
|
|
<span>@icon('watch')</span>
|
|
|
|
<span>{{ trans('entities.watch') }}</span>
|
|
|
|
</button>
|
|
|
|
</form>
|