sort by field's translation value issue fixed on category page
This commit is contained in:
parent
529db351f6
commit
ae9bcb8398
|
|
@ -94,6 +94,7 @@ class RegistrationController extends Controller
|
|||
/**
|
||||
* Method to verify account
|
||||
*
|
||||
* @param string $token
|
||||
*/
|
||||
public function verifyAccount($token) {
|
||||
$customer = $this->customer->findOneByField('token', $token);
|
||||
|
|
|
|||
|
|
@ -84,9 +84,9 @@ class SubscriptionController extends Controller
|
|||
$mailSent = true;
|
||||
|
||||
try {
|
||||
session()->flash('success', trans('shop::app.subscription.subscribed'));
|
||||
|
||||
Mail::send(new SubscriptionEmail($subscriptionData));
|
||||
|
||||
session()->flash('success', trans('shop::app.subscription.subscribed'));
|
||||
} catch(\Exception $e) {
|
||||
session()->flash('error', trans('shop::app.subscription.not-subscribed'));
|
||||
|
||||
|
|
|
|||
|
|
@ -286,7 +286,7 @@ return [
|
|||
'newest-first' => 'Newest First',
|
||||
'oldest-first' => 'Oldest First',
|
||||
'cheapest-first' => 'Cheapest First',
|
||||
'expensive-first' => 'Expensive First',
|
||||
'expansive-first' => 'Expensive First',
|
||||
'show' => 'Show',
|
||||
'pager-info' => 'Showing :showing of :total Items',
|
||||
'description' => 'Description',
|
||||
|
|
|
|||
Loading…
Reference in New Issue