User Profile
@if(isset($developer))
@endif
{{ $developer->full_name }}, Profile
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
Personal Info
- Address: {{ $developer->address }}, {{ $developer->city }}, {{ $developer->state }}, {{ $developer->country }}
- Job Title: {{ $developer->job_title }}
- DOB: {{ $developer->dob }}
-
Brief Intro:
{{ $developer->brief_intro }}
Experience
-
@if(count($devExp))
@foreach($devExp as $exp)
-
{{ $exp->company }} {{ $exp->date_start_month }}, {{ $exp->date_start_year }} - @if($exp->currently_working_here == "yes") Currently Here @else {{ $exp->date_end_month }}, {{ $exp->date_end_year }} @endif Edit | Delete
Job Title: {{ $exp->job_title }}Job Location: {{ $exp->location }}Job Description: {{ $exp->description }}
@endforeach
@else
No Experience Added
@endif