@extends('emails.layouts.master') @section('title', trans('mail.payment_notification_title')) @section('content')

@lang('mail.payment_notification_content_1', [ 'advertiserName' => mb_ucfirst($post->seller_name), 'title' => $post->title ]) @lang('mail.payment_notification_content_2', [ 'adId' => $post->id, 'packageName' => (!empty($package->short_name)) ? $package->short_name : $package->name, 'amount' => $package->price, 'currency' => $package->currency_code, 'paymentMethodName' => $paymentMethod->display_name ]) @lang('mail.payment_notification_content_3', ['appName' => config('app.name')])

@endsection