@extends('layouts.admin') @section('header', 'Client Management') @section('content')
Manage your client database
Client Name | Contact Person | Phone | Projects | Actions | |
---|---|---|---|---|---|
{{ $client->name }}
{{ $client->city }}, {{ $client->country }}
|
{{ $client->contact_person ?? 'N/A' }}
|
@if($client->email)
{{ $client->email }}
@else
No email
@endif
|
@if($client->phone)
{{ $client->phone }}
@else
No phone
@endif
|
{{ $client->projects->count() }}
|
|