@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 | Actions |
|---|---|---|---|---|---|---|
| {{ $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 | Remarks | Date | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $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_amount }} | {{ $payment->remarks ?? 'N/A' }} | {{ $payment->invoice_date ? \Carbon\Carbon::parse($payment->invoice_date)->format('d M Y') : 'N/A' }} | {{ $payment->invoice_status ?? 'Pending' }} |