@extends('layouts.app') @section('title', $customer->company_name) @section('breadcrumb')
| Code | {{ $customer->customer_code }} |
| Contact | {{ $customer->contact_person }} |
| {{ $customer->email }} | |
| Phone | {{ $customer->phone ?? '—' }} |
| Address | {{ $customer->address ?? '—' }} |
| Location | {{ collect([$customer->city, $customer->state, $customer->country])->filter()->implode(', ') ?: '—' }} |
| Status | {{ ucfirst($customer->status) }} |
| Created | {{ $customer->created_at->format('d M Y') }} |
| License | Period | Previous Expiry | New Expiry | Amount | Date |
|---|---|---|---|---|---|
{{ $renewal->license?->license_key }} |
{{ str_replace('_', ' ', $renewal->renewal_period) }} | {{ $renewal->previous_expiry->format('d M Y') }} | {{ $renewal->new_expiry->format('d M Y') }} | ₹{{ number_format($renewal->amount, 2) }} | {{ $renewal->created_at?->format('d M Y') }} |
| No renewals found. | |||||
| License | Action | Description | By | When |
|---|---|---|---|---|
{{ $log->license?->license_key }} |
{{ ucfirst($log->action) }} | {{ $log->description }} | {{ $log->created_by }} | {{ $log->created_at?->diffForHumans() }} |
| No logs found. | ||||