{{ $user->company ?? 'N/A'}}

{{ $user->infoGeneral->détails ?? 'N/A' }}

{{ __('profile.public.budget') }}

@if(isset($user->infoGeneral) && isset($user->infoGeneral->budget))

{{ __('form.budgets.' . $user->infoGeneral->budget) }}

@endif

{{ __('profile.public.city') }}

{{ isset($user->infoGeneral) ? $user->infoGeneral->city->name : 'N/A' }}

{{ __('profile.public.expertises') }}

    @if(isset($user->expertise)) @foreach($user->expertise->getAttributes() as $key => $value) @if($value && !in_array($key, ['id', 'user_id', 'created_at', 'updated_at']))
  • {{ __('expertise.' . $key) }}
  • @endif @endforeach @endif

{{ __('profile.public.portfolio') }}

@forelse($user->images ?? [] as $image)
@if($image->link) {{ $image->description ?? 'N/A' }} @else {{ $image->description ?? 'N/A' }} @endif
{{ $image->description ?? 'N/A'}}
{{ __('profile.public.edit') }}
@csrf @method('DELETE')
@empty @endforelse

{{ __('profile.public.case_studies') }}

@forelse($user->caseStudy ?? [] as $etude)
{{ $etude->client ?? 'N/A' }}

{{ __('profile.public.problem') }} {{ $etude->problem ?? 'N/A' }}

{{ __('profile.public.solution') }} {{ $etude->solution ?? 'N/A' }}

{{ __('profile.public.results') }} {{ $etude->results ?? 'N/A' }}

{{ __('profile.public.edit') }}
@csrf @method('DELETE')
@empty @endforelse

{{ __('profile.public.more_info') }}

{{ __('profile.public.clientele_of') }} {{ $user->company ?? 'N/A' }}

{{ $user->infoGeneral->clientele ?? 'N/A' }}

{{ $user->company ?? 'N/A' }} {{ __('profile.public.help') }}
    @if(isset($user->problemes)) @foreach($user->problemes->getAttributes() as $key => $value) @if($value && !in_array($key, ['id', 'user_id', 'created_at', 'updated_at']))
  • {{ __('problem.problems.' . $key) }}
  • @endif @endforeach @endif