@extends('layouts.portal') @section('header_title', 'Client Portfolio') @section('content')

Clients

Manage corporate partners and external connections.

@can('create', App\Models\User::class) Add Client @endcan
@foreach($clients as $client) @endforeach
Client Name Company Joined Actions

{{ $client->name }}

{{ $client->email }}

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

{{ $client->created_at->format('M d, Y') }}

@can('delete', $client)
@csrf @method('DELETE')
@endcan
{{ $clients->links() }}
@endsection