Skip to main content
157 results for “custom module routes”
Sorted by relevance
Storefront Developer Documentation / Breadcrumb
How do I manipulate the breadcrumb?
...ct page, or a new route that is custom to the project or module. Adding to the breadcrumb To ad ... the referer. For example, if a customer performs a search for "shirt" and then clicks on a listing result, the breadcrumb on the product page will be: Home ...
Developer Documentation / Response Builders
How do I attach middlewear to a response builder?
... does not expose the underlying routes and controllers, middleware can be attached directly to the response builder. This allows for code to be executed before the main pipeline is run. For example, to restrict all products from being accessible to guest v...
Developer Documentation / Admin Filters
How do I create a dropdown admin filter?
... break; case 'customer': $query->wher ...e('layout', 'customer'); break; ... [ 'value' => 'customer', 'name' => 'Customer', ], [ 'valu...
Developer Documentation / Extending Core Functionality
How do I extend the address forms?
... account-area). These forms are customer facing and all extend Aero\F ...class. Aero\Checkout\Http\Forms\CustomerAddressForm This address form ...has additional customer sections. Key View customer account-area::forms.fields.ad ...address_name checkout::sections.customer The bottom sections has this ...
General / Announcements
Admin v1.2 Released
...e. For those retailers who have customers who are super keen to order ...re bringing that feature to the customer’s profile screen, so you can ... show when viewing orders for a customer - [Added] Help sidebar panel ...g pre-defined options - [Added] Customer view page slots - [Added] Sea...
Developer Documentation / Events
What are the events available?
...ddressDeleted - AddessUpdated - CustomerManualylCreated - CustomerRegistered - CustomerUpdated - CustomerChanged - PasswordResetRequest Cart CartEmptied - CartItemAdded - CartItemRemoved - CartItemUpdated - OrderCanceled - OrderClosed - OrderComplete - Ord...
Developer Documentation / Response Builders
How do I pass data to a response?
...xample, if you needed to obtain customer reviews for a given product a ...latest 5 blog posts from a blog module and sending them to the homepage to be displayed: \Aero\Store\Http\Responses\Homepage::extend(function ($page) { $posts = \Acme\BlogPosts::...
Catalog Management / Categories
How do I create a new category?
...etailed category text that your customers will see. Listing Page Optio ...portant aspect when it comes to customers finding your store when sear ...utes section is used to provide custom fields, these may have been set up by your agency and used to display...
Catalog Management / Collections
How do I create a new collection?
...ailed collection text that your customers will see. Listing Page Optio ...portant aspect when it comes to customers finding your store when sear ...utes section is used to provide custom fields, these may have been set up by your agency and used to display...
Catalog Management / Manufacturers
How do I create a new manufacturer?
...led manufacturer text that your customers will see. Listing Page Optio ...portant aspect when it comes to customers finding your store when sear ...utes section is used to provide custom fields, these may have been set up by your agency and used to display...
Content Management / Combinations
How do I create a new combination?
...iled combination text that your customers will see. Listing Page Optio ...portant aspect when it comes to customers finding your store when sear ...utes section is used to provide custom fields, these may have been set up by your agency and used to display...
Developer Documentation / Validation
How do I use validation requests?
To use a custom validation request, we have to ...updateAddress(Request $request, Customer $customer) Change to: public function u ...(UpdateAddressRequest $request, Customer $customer)
Catalog Management / Products
How do I create a new product in the admin?
...s product, as well as setting a custom slug to make up the URL for thi ...our store) - This product has a custom slug- checking this box allows ...you to set a custom url for your product. From here the form is slightly different depending on if this prod...
Developer Documentation / Payment Gateways
What are the available payment gateways?
...Supports saving of card details Customers can save their card details ... have not been completed by the customer or that have been modified, l ...ing you to email a link to your customer so that they can pay for their order online even if it was taken ov...
Developer Documentation / Resource Lists
What are the default resource lists?
...List – CurrenciesResourceList – CustomerGroupsResourceList – CustomersResourceList – CustomerTaxGroupsResourceList – DiscountsResourceList – FulfillmentMethodsResourceList – FulfillmentsResourceList – MailNotificationsResourceList – ManufacturersResourceLi...
Catalog Management / Tags
What is a tag?
...w you to associate products for customers convenience, this includes: ... 'Navy' products, allowing your customers to search for a more generic ...ur listings. This provides your customers with an easy way to search for similar products. If you don't want...
Developer Documentation / Events
What are event listeners?
...ts - for example, it could be a Module Service Provideror the EventServiceProviderin the app directory of Aero. How do I add a listener to an event? <?php namespace App\Providers; use Illuminate\Auth\Events\Registered; use Illuminate\Auth\Listeners\SendEma...
Developer Documentation / Events
How do I create a new event?
...oviderof choice, for example, a module Service Provider: protected $listen = [ Registered::class => [ // insert your listener here ] ]; Extending ManagedEvent Aero’s ManagedEventis an optional classmade specifically for Aero...