@php $thumbnail_image = public_path('storage/uploads/' . $thumbnail); $casestudy_logo = public_path('storage/uploads/' . $logo); $client_logo = public_path('storage/uploads/' . $client_logo); $tutapis_logo = public_path('logo.png'); @endphp
Company Logo

Tutapis Limited

{{-- Title --}}

Case Study:

{{ $name ?? 'Case Study Title' }}

{{-- Client --}}

Client:

{{ $client_name ?? 'Client Name' }}

{{-- industry --}}

Industry:

{{ $industry}}

{{-- Dates --}}

Project Duration:

{{ $duration ?? 'N/A' }}

{{-- Dates --}}

Team Size:

{{ $team_size }}

{{-- Tech Stack --}}
@if(isset($techstack) && is_array($techstack))

Technologies:

{{ implode(' · ', $techstack) }}

@endif
{{-- Footer --}}
© {{ date('Y') }} Tutapis Ltd. All rights reserved.
{{-- PAGE BREAK --}}

Project Overview

{!! $description !!}
{{-- Challenges --}} @if(!empty($challenges))

Challenges

@foreach ($challenges as $index => $challenge)

{{ $index + 1 . ". " . $challenge['heading'] }}

{{ $challenge['description']}}

@endforeach
@endif
@if(!empty($solutions['sectionDescription']))

Our Solution

{{ $solutions['sectionDescription'] }}

@endif @if(!empty($solutions['solutions'])) @foreach ($solutions['solutions'] as $index => $solution)

{{ $index + 1 . ". " . $solution['heading'] }}

{{ $solution['description'] }}

@if(!empty($solution['tags']))
    @foreach ($solution['tags'] as $item)
  • {{ $item }}

  • @endforeach
@endif
@endforeach @endif
@if (!empty($tech_arch['sectionDescription']))

Technical Architecture

{{ $tech_arch['sectionDescription'] }}

@endif @if (!empty($tech_arch['sectionImage'])) @endif @if (!empty($tech_arch['layers'])) @foreach ($tech_arch['layers'] as $item)

{{ $item['heading'] }}

@if($item['tags'])
    @foreach ($item['tags'] as $highlight)
  • {{ $highlight }}
  • @endforeach
@endif
@endforeach @endif
@if(!empty($process['sectionDescription']))

Implementation Process

{{ $process['sectionDescription'] }}

@endif
@if (!empty($process['phases'])) @foreach ($process['phases'] as $index => $item)

Phase {{ $index + 1 }}: {{ $item['name'] }}

Duration: {{ $item['duration'] }}

{{ $item['description'] }}

@endforeach @endif
@if (!empty($impacts['sectionDescription']))

Results & Impact

{{ $impacts['sectionDescription'] }}

@endif
@if (!empty($impacts['impacts'])) @foreach ($impacts['impacts'] as $item)

{{ $item['heading'] }}

{{ $item['description'] }}

{{ abs($item['percent']) }}%
@endforeach @endif
@if (!empty($testimony))

What our client has to say

{{ $testimonial_name }}

{{ $testimonial_position }}

{{ $testimony }}
@endif @if(!empty($before))

Before Implementation

@endif @if(!empty($after))

After Implementation

@endif
@if (!empty($gallery))

Project Gallery

{{ $gallery['sectionDescription'] }}

@foreach ($gallery['images'] as $image) @endforeach
@endif