@extends('layouts.portal') @section('header_title', 'Client Details') @section('content')
{{ substr($client->name, 0, 1) }}

{{ $client->name }}

{{ $client->designation ?: 'Independent Client' }}

Contact

Associated Projects

@forelse($projects as $project)
{{ $project->status }}

{{ $project->title }}

{{ $project->description }}

View Project →
@empty
No active or past projects currently associated with this client.
@endforelse
@endsection