Select a template to get started with your resume creation:
@php
$templates = \App\Models\Template::where('status', 'active')
->orderBy('is_featured', 'desc')
->orderBy('created_at', 'desc')
->limit(6)
->get();
@endphp
@foreach ($templates as $template)
Experience — Senior Developer at Tech Corp
Education — BS Computer Science
{{ $template->name }}
{{ Str::limit($template->description, 50) }}
@if ($template->is_featured)
Featured
@endif
@endforeach