@extends('layouts.admin') @section('title', $customer->name) @section('content')

{{ trans('general.address') }}

{{ trans('general.edit') }}
{{ trans('general.paid') }}
@money($amounts['paid'], setting('default.currency'), true)
{{ trans('dashboard.open_invoices') }}
@money($amounts['open'], setting('default.currency'), true)
{{ trans('dashboard.overdue_invoices') }}
@money($amounts['overdue'], setting('default.currency'), true)
@foreach($transactions as $item) @endforeach
{{ trans('general.date') }} {{ trans('general.amount') }}
@date($item->paid_at) @money($item->amount, $item->currency_code, true)
@foreach($invoices as $item) @endforeach
{{ trans_choice('general.numbers', 1) }} {{ trans('general.amount') }} {{ trans_choice('general.statuses', 1) }}
{{ $item->invoice_number }} @money($item->amount, $item->currency_code, true) {{ trans('invoices.status.' . $item->status->code) }}
@endsection @push('scripts_start') @endpush