{{-- resources/views/pages/portfolio/index.blade.php --}} @extends('layouts.app') @section('title', 'Portfolio — KiruDev Technologies') @section('content')

Our Work

Project Portfolio

A selection of products and platforms we've designed, built, and shipped.

@if($categories->count())
All @foreach($categories as $cat) {{ ucfirst($cat) }} @endforeach
@endif @if($projects->count())
@foreach($projects as $p)
@if($p->cover_image) {{ $p->title }} @else
{{ substr($p->title,0,1) }}
@endif @if($p->featured)
Featured
@endif
{{ ucfirst($p->category) }} @if($p->client){{ $p->client }}@endif

{{ $p->title }}

{{ Str::limit($p->summary, 100) }}

@if($p->tech_stack && count($p->tech_stack))
@foreach(array_slice($p->tech_stack, 0, 4) as $tech) {{ $tech }} @endforeach @if(count($p->tech_stack) > 4)+{{ count($p->tech_stack)-4 }}@endif
@endif
@if($p->completed_at){{ $p->completed_at->format('M Y') }}@endif View Case Study →
@endforeach
{{ $projects->links() }}
@else

No projects yet

Check back soon as we add case studies from our portfolio.

@endif
@endsection