Fix send email to archived payment
This commit is contained in:
parent
db714a17ac
commit
0203bdf40b
1 changed files with 1 additions and 1 deletions
|
|
@ -239,7 +239,7 @@ class PaymentController extends BaseController
|
|||
$ids = Input::get('public_id') ? Input::get('public_id') : Input::get('ids');
|
||||
|
||||
if ($action === 'email') {
|
||||
$payment = Payment::scope($ids)->first();
|
||||
$payment = Payment::scope($ids)->withArchived()->first();
|
||||
$this->contactMailer->sendPaymentConfirmation($payment);
|
||||
Session::flash('message', trans('texts.emailed_payment'));
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue