@extends('components.frontend.master') @section('title', ($project->meta_title ?: $project->title . ' | Portfolio Welely')) @section('meta') @if($project->meta_keywords) @endif @endsection @section('content')
Accueil Portfolio {{ $project->client_name ?: $project->title }}
@if(is_array($project->categories) && count($project->categories))
@foreach($project->categories as $cat) {{ $cat }} @endforeach
@endif

{{ $project->title }}

@if($project->subtitle)

{{ $project->subtitle }}

@endif @if($project->stat_1_value || $project->stat_2_value || $project->stat_3_value || $project->stat_4_value)
@if($project->stat_1_value)
{{ $project->stat_1_value }}
{{ $project->stat_1_label }}
@endif @if($project->stat_2_value)
{{ $project->stat_2_value }}
{{ $project->stat_2_label }}
@endif @if($project->stat_3_value)
{{ $project->stat_3_value }}
{{ $project->stat_3_label }}
@endif @if($project->stat_4_value)
{{ $project->stat_4_value }}
{{ $project->stat_4_label }}
@endif
@endif
@if($project->context)
01

Contexte du Projet

{!! nl2br(e($project->context)) !!}
@endif @if(is_array($project->challenges) && count($project->challenges) || $project->challenge_quote)
{{ $project->context ? '02' : '01' }}

Le Défi

@if(is_array($project->challenges) && count($project->challenges))
@foreach($project->challenges as $challenge)

{{ $challenge['title'] ?? '' }}

{{ $challenge['description'] ?? '' }}

@endforeach
@endif @if($project->challenge_quote)
"{{ $project->challenge_quote }}" @if($project->challenge_quote_author) — {{ $project->challenge_quote_author }} @endif
@endif
@endif @if($project->solution_intro || (is_array($project->solution_features) && count($project->solution_features))) @php $sectionNum = 1 + ($project->context ? 1 : 0) + ((is_array($project->challenges) && count($project->challenges)) || $project->challenge_quote ? 1 : 0); @endphp
{{ str_pad($sectionNum, 2, '0', STR_PAD_LEFT) }}

Notre Solution

@if($project->solution_intro)

{{ $project->solution_intro }}

@endif @if(is_array($project->solution_features) && count($project->solution_features))
@foreach($project->solution_features as $feature)

{{ $feature['title'] ?? '' }}

@if(!empty($feature['description']))

{{ $feature['description'] }}

@endif @if(!empty($feature['details']))
    @foreach($feature['details'] as $detail)
  • {{ $detail }}
  • @endforeach
@endif
@endforeach
@endif @if(is_array($project->process_timeline) && count($project->process_timeline))

Processus de Développement

@foreach($project->process_timeline as $i => $step)
{{ $i + 1 }}

{{ $step['phase'] ?? '' }} @if(!empty($step['duration'])) ({{ $step['duration'] }}) @endif

@if(!empty($step['deliverables']))

{{ $step['deliverables'] }}

@endif
@endforeach
@endif
@endif @if($project->results_intro || (is_array($project->results_metrics) && count($project->results_metrics))) @php $sectionNum++; @endphp
{{ str_pad($sectionNum, 2, '0', STR_PAD_LEFT) }}

Les Résultats

@if($project->results_intro)

{{ $project->results_intro }}

@endif @if(is_array($project->results_metrics) && count($project->results_metrics))
@foreach($project->results_metrics as $metric)
{{ $metric['value'] ?? '' }}
{{ $metric['label'] ?? '' }} @if(!empty($metric['description'])) {{ $metric['description'] }} @endif
@endforeach
@endif @if($project->client_testimonial)

{{ $project->client_testimonial }}

@if($project->client_testimonial_avatar) {{ $project->client_testimonial_author }} @else
{{ mb_strtoupper(mb_substr($project->client_testimonial_author ?? $project->client_name, 0, 2)) }}
@endif
{{ $project->client_testimonial_author }}
@if($project->client_testimonial_position)

{{ $project->client_testimonial_position }}

@endif
@endif @if(is_array($project->business_impact) && count($project->business_impact))

Impact Business

    @foreach($project->business_impact as $impact)
  • {{ $impact }}
  • @endforeach
@endif
@endif @if(is_array($project->gallery_images) && count($project->gallery_images)) @php $sectionNum++; @endphp @endif @if(is_array($project->technologies) && count($project->technologies)) @php $sectionNum++; @endphp
{{ str_pad($sectionNum, 2, '0', STR_PAD_LEFT) }}

Technologies & Outils

@foreach($project->technologies as $category => $techs)

{{ $category }}

@foreach($techs as $tech) {{ $tech }} @endforeach
@endforeach
@endif

Vous avez un projet similaire ?

Travaillons ensemble pour créer quelque chose d'exceptionnel pour votre entreprise.

@endsection