@component('mail::layout') {{-- Header --}} @slot('header') @include('email.admin.includes.header') @endslot {{-- Body --}} {{-- Greeting --}} {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level === 'error') # @lang('Whoops!') @else # Dear Admin, @endif @endif

The following user account has bought new credits.

@if (userFirmAdmin($user->id)) @endif
Email {{ $user->email }}
Firm Code {{ userFirmAdmin($user->id)->name }}
Subscription Type {{ $data['subscription_type'] ?? '' }}
@foreach ($line_items as $item) @endforeach @if (!empty($payment_history['couponcode'] ?? '')) @endif
Description Qty Unit Price Amount
{{ $item['description'] ?? '' }} {{ $item['qty'] ?? 1 }} {{ $item['amount_display'] ?? '' }} {{ $item['total_display'] ?? '' }}
Subtotal {{ getPricePrefix(priceFormat($subtotal)) }}
PROMOCODE : {{ $payment_history['couponcode'] ?? '' }} -{{ getPricePrefix(priceFormat($discount)) }}
Total {{ getPricePrefix(priceFormat($total_after_discount)) }}

Please note: This is an automated email that cannot accept replies.

Thank you,
@if (! empty($salutation)) {{ $salutation }} @endif {{-- Subcopy --}} @isset($subcopy) @slot('subcopy') @component('mail::subcopy') {{ $subcopy }} @endcomponent @endslot @endisset {{-- Footer --}} @slot('footer') @include('email.admin.includes.footer') @endslot @endcomponent