@extends('users.home.index') @section('content')
My Profile
Full Name
: {{ $showUser->salutation. ' ' . $showUser->last_name . ' ' . $showUser->first_name}}
Country
: {{ $userCountry }}
Status
: {{ $showUser->status }}
Email
: {{ $showUser->email }}
Address
: {{ $showUser->address }}

@foreach($conferences as $conf) @endforeach
Id Conference Name
{{ $conf->id }} {{ $conf->name }} @if ($showUser->isAuthoring($conf)) author @endif @if ($showUser->isReviewing($conf)) reviewer @endif @if ($showUser->isOrganizing($conf)) organizer @endif
@endsection