changed the position of Add Address Button in Customer Account Section
This commit is contained in:
parent
819606d232
commit
605ae744dd
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'refresh_documents' => env('ELASTIC_SCOUT_DRIVER_REFRESH_DOCUMENTS', false)
|
||||
];
|
||||
|
|
@ -15,7 +15,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'driver' => env('SCOUT_DRIVER', null),
|
||||
'driver' => env('SCOUT_DRIVER', 'algolia'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
@ -41,7 +41,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'queue' => env('SCOUT_QUEUE', true),
|
||||
'queue' => env('SCOUT_QUEUE', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@ class HomeController extends Controller
|
|||
*/
|
||||
public function index()
|
||||
{
|
||||
|
||||
$currentChannel = core()->getCurrentChannel();
|
||||
|
||||
$currentLocale = core()->getCurrentLocale();
|
||||
|
|
@ -58,6 +59,7 @@ class HomeController extends Controller
|
|||
->get()
|
||||
->toArray();
|
||||
|
||||
|
||||
return view($this->_config['view'], compact('sliderData'));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@
|
|||
<meta name="description" content="{{ $page->meta_description }}" />
|
||||
|
||||
<meta name="keywords" content="{{ $page->meta_keywords }}" />
|
||||
<h1>Hello</h1>
|
||||
@endsection
|
||||
|
||||
@section('content-wrapper')
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
{{ __('shop::app.customer.login-text.no_account') }} - <a href="{{ route('customer.register.index') }}">{{ __('shop::app.customer.login-text.title') }}</a>
|
||||
</div>
|
||||
|
||||
|
||||
{!! view_render_event('bagisto.shop.customers.login.before') !!}
|
||||
|
||||
<form method="POST" action="{{ route('customer.session.create') }}" @submit.prevent="onSubmit">
|
||||
|
|
|
|||
Loading…
Reference in New Issue