Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,8 @@ interface TransactionInterface
// could not generate goto gate form
// در صورتیکه خطایی در ایجاد فرم ایجاد شود خطای مربوطه لاگ شده و پیغام خطا به کاربر نمایش داده شود

Log::emergency($paymentGateway->slug . ' #' . $e->getCode() . '-' . $e->getMessage());
Session::flash('alert-danger', trans('trans.could_not_create_goto_bank_form', ['gateway' => $paymentGateway->slug]));
Log::emergency($paymentGateway . ' #' . $e->getCode() . '-' . $e->getMessage());
Session::flash('alert-danger', trans('trans.could_not_create_goto_bank_form', ['gateway' => $paymentGateway]));

return redirect()->back()->withInput();
}
Expand Down Expand Up @@ -500,7 +500,7 @@ example: `resources/views/gateway.gotogate.blade.php`

```php
<div>
{{!! $form !!}}
{!! $form !!}
</div>
```

Expand Down