@extends('layouts.structure') @section('content')
Client Details
Client Information

Client Code: {{ $client->client_code }}

Company Name: {{ $client->client_name }}

Type: {{ $client->type ?? 'N/A' }}

Address: {{ $client->address ?? 'N/A' }}

Contact Person: {{ $client->contact_person ?? 'N/A' }}

Email: {{ $client->email ?? 'N/A' }}

Mobile: {{ $client->mobile ?? 'N/A' }}

Associated Plants
    @forelse ($client->plants as $plant)
  • {{ $plant->name }}
  • @empty
  • No plants associated
  • @endforelse
@endsection