sort by field's translation value issue fixed on category page

This commit is contained in:
Prashant Singh 2018-12-21 18:20:58 +05:30
parent 529db351f6
commit ae9bcb8398
3 changed files with 4 additions and 3 deletions

View File

@ -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);

View File

@ -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'));

View File

@ -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',