{{-- Extends layout --}} @extends(getThemeBasePath()) @section('page_title') {{$page_title}} @endsection {{-- Content --}} @section('content')
{{ $designation[$user->id] }}
{{ $user->first_name . " ".$user->last_name }}
{{ date('d-m-Y', strtotime($user->dob)) }}
{!! $user->address ? $user->address . ', ' : '' !!} {!! $user->city ? $user->city . ', ' : '' !!} {{ $states[$user->id] ? $states[$user->id] . '-' : '' }} {!! $user->postcode ? $user->postcode . ', ' : '' !!} @foreach (config('constant.countries') as $cKey => $cVal) @if ($user->country == $cKey) {{ $cVal }}