Skip to content

Commit

Permalink
Merge branch '7.x' of github.com:doublethreedigital/simple-commerce i…
Browse files Browse the repository at this point in the history
…nto 7.x
  • Loading branch information
duncanmcclean committed Aug 26, 2024
2 parents 868e6a8 + 5d54f3a commit 3866ba7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/cp/tax-rates/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<div class="publish-form card p-0 flex flex-wrap">
<div class="flex flex-col md:flex-row items-center w-full">
<div class="form-group w-full md:w-1/2">
<label class="block mb-1">Na{{ __('Name') }}me <i class="required">*</i></label>
<label class="block mb-1">{{ __('Name') }} <i class="required">*</i></label>

<input type="text" name="name" autofocus="autofocus" class="input-text" value="{{ old('name') }}">

Expand Down
2 changes: 1 addition & 1 deletion src/Gateways/Builtin/MollieGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ protected function getOrderFromWebhookRequest(Request $request): ?Order
{
return OrderFacade::query()
->where('mollie->id', $request->get('id'))
->orWhere('gateway', 'like', "%tr_{$request->get('id')}%")
->orWhere('gateway', 'like', "%{$request->get('id')}%")
->first();
}
}

0 comments on commit 3866ba7

Please sign in to comment.