24 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
| {{ $templates->links() }}
 | |
| 
 | |
| @foreach($templates as $template)
 | |
|     <div class="card template-item border-card p-m mb-m" tabindex="0"
 | |
|          aria-label="{{ trans('entities.templates_replace_content') }} - {{ $template->name }}"
 | |
|          draggable="true" template-id="{{ $template->id }}">
 | |
|         <div class="template-item-content" title="{{ trans('entities.templates_replace_content') }}">
 | |
|             <div>{{ $template->name }}</div>
 | |
|             <div class="text-muted">{{ trans('entities.meta_updated', ['timeLength' => $template->updated_at->diffForHumans()]) }}</div>
 | |
|         </div>
 | |
|         <div class="template-item-actions">
 | |
|             <button type="button"
 | |
|                     title="{{ trans('entities.templates_prepend_content') }}"
 | |
|                     aria-label="{{ trans('entities.templates_prepend_content') }} - {{ $template->name }}"
 | |
|                     template-action="prepend">@icon('chevron-up')</button>
 | |
|             <button type="button"
 | |
|                     title="{{ trans('entities.templates_append_content') }}"
 | |
|                     aria-label="{{ trans('entities.templates_append_content') }} -- {{ $template->name }}"
 | |
|                     template-action="append">@icon('chevron-down')</button>
 | |
|         </div>
 | |
|     </div>
 | |
| @endforeach
 | |
| 
 | |
| {{ $templates->links() }} |