@extends('user.layout.master') @section('title', 'Resume') @section('content')
MY Resumes
@if(Auth::user()->resumes()->count() > 0)
@foreach(Auth::user()->resumes as $resume)
{{ $resume->name }}
{{ Str::limit($resume->summary, 100) }}
{{ $resume->email }}
{{ $resume->phone }}
{{ $resume->location }}
{{ $resume->experiences()->count() }} Experience
{{ $resume->educations()->count() }} Education
{{ $resume->skills()->count() }} Skills
@endforeach {{--
Creative Designer
Innovative designer with a passion for user-centric solutions and a strong portfolio of successful projects.
designer@example.com
+098 765 4321
San Francisco, USA
5 Experiences
1 Education
12 Skills
Software Engineer
Detail-oriented software engineer specializing in backend development and cloud infrastructure.
dev@example.com
+555 123 9876
Austin, USA
3 Experiences
2 Educations
15 Skills
Marketing Specialist
Results-driven marketing specialist with experience in digital campaigns and market analysis.
marketing@example.com
+111 222 3333
Chicago, USA
4 Experiences
1 Education
10 Skills
Data Analyst
Analytical and detail-oriented data analyst with a knack for turning data into actionable insights.
analyst@example.com
+444 555 6666
Seattle, USA
2 Experiences
2 Educations
11 Skills
Project Manager
Experienced Project Manager with a proven track record of leading teams to success.
pm@example.com
+777 888 9999
Boston, USA
6 Experiences
1 Education
14 Skills
--}}
@else

No resumes yet

Create your first professional resume to get started

Create Your First Resume
@endif
@endsection