1 {{ $templates->links() }}
3 @foreach($templates as $template)
4 <div class="card template-item border-card p-m mb-m" draggable="true" template-id="{{ $template->id }}">
5 <div class="template-item-content" title="{{ trans('entities.templates_replace_content') }}">
6 <div>{{ $template->name }}</div>
7 <div class="text-muted">{{ trans('entities.meta_updated', ['timeLength' => $template->updated_at->diffForHumans()]) }}</div>
9 <div class="template-item-actions">
11 title="{{ trans('entities.templates_prepend_content') }}"
12 template-action="prepend">@icon('chevron-up')</button>
14 title="{{ trans('entities.templates_append_content') }}"
15 template-action="append">@icon('chevron-down')</button>
20 {{ $templates->links() }}