@extends('layouts.portal') @section('title', trans_choice('general.payments', 1)) @section('content')

@date($payment->paid_at)

  • {{ trans('general.from') }}: {{ setting('company.name') }}
  • {{ trans('general.address') }}: {{ setting('company.address') }}
  • {{ trans('general.phone') }}: {{ setting('company.phone') }}
  • {{ trans('general.email') }}: {{ setting('company.email') }}
  • {{ trans('general.to') }}: {{ $payment->contact->name }}
  • {{ trans('general.address') }}: {{ $payment->contact->address }}
  • {{ trans('general.phone') }}: {{ $payment->contact->phone }}
  • {{ trans('general.email') }}: {{ $payment->contact->email }}
  • @if ($payment->description)

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

    {{ $payment->description }}

    @endif

    {{ trans_choice('general.payments', 1) }}

    {{ trans('general.amount') }} {{ trans_choice('general.payment_methods', 1) }} {{ trans('general.description') }}
    @money($payment->amount, $payment->currency_code, true) {{ $payment_methods[$payment->payment_method] }} {{ $payment->description }}
    @if ($payment->attachment) @endif
    @endsection @push('scripts_start') @endpush