@extends('layouts.masterbeta') @section('page-title') Clients | {{ $showclient->name }} @endsection @section('breadcrumbs') @endsection @section('content')
{{ $note->notes_body }}
| Type | Shortcode | Network | Status | Remarks | Expiry Date |
|---|---|---|---|---|---|
| {{ $code->code_type ?? 'N/A' }} | {{ $code->shortcode ?? 'N/A' }} | {{ $code->network ?? 'N/A' }} | {{ $code->status ?? 'Active' }} |
{{ $code->remarks ?? '-' }}
|
{{ $code->expiry_date ? \Carbon\Carbon::parse($code->expiry_date)->format('d M Y') : 'N/A' }} |
| Invoice # | Services | Amount | Date | Status |
|---|---|---|---|---|
| {{ $payment->invoice_number ?? 'N/A' }} |
@php
$serviceNames = $payment->service_names;
@endphp
@if($serviceNames->count() > 0)
@foreach($serviceNames as $serviceName)
{{ $serviceName }}
@endforeach
@else
-
@endif
|
{{ $payment->invoice_date ? \Carbon\Carbon::parse($payment->invoice_date)->format('d M Y') : 'N/A' }} | {{ $payment->invoice_status ?? 'Pending' }} |
{{ $note->notes_body ?? $note->note ?? $note->content ?? 'No content found' }}