@extends('layouts.master') @section('content')
@if(!empty($profileDetail->name)) @php $fullName = $profileDetail->name; $parts = explode(' ', $fullName); $initials = ''; foreach ($parts as $part) { $initials .= strtoupper(substr($part, 0, 1)); } @endphp @endif
@if(!empty($profileDetail->avatar)) @elseif(optional($profileDetail)->avatar === NULL)
{{ $initials }}
@else @endif
@if(!empty($profileDetail->name)) {{ $profileDetail->name }} @else {{ Session::get('name') }} @endif

@if(!empty($profileDetail->position)) {{ $profileDetail->position }} @elseif($profileDetail->position === null) N/A @else {{ Session::get('name') }} @endif

@if(!empty($profileDetail->location)) {{ $profileDetail->location }} @elseif($profileDetail->location === null) N/A @else {{ Session::get('location') }} @endif

  • {{$tot}}

    Event

Personal Information
Company name {{$profileDetail->company_name}}
Address {{$profileDetail->address}}
Email {{$profileDetail->email}}
Telp {{$profileDetail->Telp}}
Person responsible {{$profileDetail->name}}
@section('script') @endsection @endsection