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

{{ trans('auth.profile') }}

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

{{ $customer->address }}

{{ trans('general.edit') }}
{{ trans('general.paid') }} @money($amounts['paid'], setting('general.default_currency'), true)
{{ trans('dashboard.open_invoices') }} @money($amounts['open'], setting('general.default_currency'), true)
{{ trans('dashboard.overdue_invoices') }} @money($amounts['overdue'], setting('general.default_currency'), true)

{{ trans_choice('general.transactions', 2) }}

@foreach($transactions as $item) @endforeach
{{ trans('general.date') }} {{ trans('general.amount') }}
{{ Date::parse($item->paid_at)->format($date_format) }} @money($item->amount, $item->currency_code, true)
@endsection