@extends('layouts.member-app') @section('page-title')

@lang($pageTitle)

@endsection @section('content')
@lang('modules.employees.fullName')

{{ ucwords($client->name) }}

@lang('app.mobile')

{{ (!is_null($client->country_id)) ? '+'.$client->country->phonecode.'-' : ''}}{{ $client->mobile ?? 'NA'}}


@lang('app.email')

{{ $client->email }}

@lang('modules.client.companyName')

{{ empty($client->client)? 'NA': ucwords($client->client[0]->company_name) }}

    @forelse($invoices as $invoice)
  • {{ $invoice->invoice_number }}
    {{ $invoice->currency_symbol }} {{ $invoice->total }}
    {{ $invoice->issue_date->format($global->date_format) }}
  • @empty
  • No invoice for this client.
  • @endforelse
@endsection