@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
| ID |
Name |
Preview |
Created At |
Actions |
@forelse($templates as $template)
| {{ $template->id }} |
{{ $template->name }} |
@if($template->image_path)
@else
No image
@endif
|
{{ $template->created_at->format('Y-m-d H:i') }} |
|
@empty
| No templates found. |
@endforelse
@if($templates->hasPages())
{{ $templates->links() }}
@endif