{{-- resources/views/client/projects/index.blade.php --}} @extends('client.layouts.client') @section('title','My Projects') @section('page-title','My Projects') @section('client-content') @if($projects->count())
@foreach($projects as $p) {{-- Status bar --}}

{{ $p->title }}

{{ ucfirst(str_replace('_',' ',$p->status)) }}
@if($p->description)

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

@endif
{{-- Progress --}}
Progress {{ $p->progress }}%
{{-- Meta row --}}
@php $done = $p->milestones->where('completed_at','!=',null)->count(); $total = $p->milestones->count(); @endphp @if($total > 0) {{ $done }}/{{ $total }} milestones @endif
@if($p->deadline) Due {{ $p->deadline->format('d M Y') }} @endif
@endforeach
@else

No projects yet

Once KiruDev starts working on your project, it will appear here with real-time progress and milestone tracking.

@endif @endsection