349 results
for “install a theme”
Sorted by relevance
Developer Documentation / Admin Vue
How do I use Vue in the admin?
When in an adminadmin's Blade view file you can use any Vue directive (such as
v-for,
v-if,
@clicketc).
Pu ... Mode
Putting Vue into dev mode allows you to use the Vue dev too ...ls. You can put the Admin Vue into dev mode by puttin ...g this code snippet in your Blade view:
@push('scripts')
<sc...
Developer Documentation / Account Area
How do I inject into a slot in the account area?
You can inject into account area slots using the Aero\AccountArea\AccountAreaSlot::injectmethod. This method accepts two parameters, the key of the slot you ...want to inject into and then the view or a closure that defines the view to be injecte ...d. When passing a closure it enables you t...
Developer Documentation / Events
How do I add a custom event to a Service Provider?
Laravel events provide an observer implementation, allowing you to listen and observe for specific tasks happening in your application. Adding a custom event to a ServiceProvidermeans that the application will listen to it as soon as it occurs. In terms of...
Developer Documentation / Admin Vue
How do I add a custom Vue component to the admin?
This repo (https://github.com/aerocargo/admin-example-vue
You need to add the
assetLinksfunction to your module ...s service provider so that your modules assets are publicly linkable. An example module service provider can be found here in the repo (htt...
Developer Documentation / Resource Lists
How do I extend an exisiting resource list?
Adding a New Column
To add columns to a resource list you can use the addColumn, addColumnBefore, or addColumnAftermethods from within the pipe ...line. These methods return a usual resource list column which allows you to chain on the other available column...
Developer Documentation / Account Area
What are the default forms in the account area?
The following classes are in the Aero\AccountArea\Http\Formsnamespace.
Class
Description
AccountAddressEditForm
The edit address form.
AccountAddressNewForm
The new address form.
AccountDetailsForm
The account details form.
AccountLoginForm
The login form.
...
Developer Documentation / Listings And Search
What are the available documents for listings and search?
There are 2 documents available:
Aero\Search\Elastic\Documents\ListingsDocument
... document is used to hold information about the listings that are shown on the storefront.
Aero\Search\Elastic\Documents\ProductDocument
T ... document is used to hold information about the products within t...
Catalog Management / Collections
How do I create a new collection?
In order to create a new collection for your store f ...irst navigate to the collection listings page and cand click the "+ New Collection" ...button at the top of the page.
From here you will be presen ...ted with the form for creating a new collection.
The form ...
Developer Documentation / Admin Slots
What are the available backend admin slots?
For more information about using backend admin slots please see our articarticle "How do I inject a view into a backend admin slot?
The following slots can be injected into.
app-
scripts-
login.header-
login.form-
login.footer- ...
login.footer-
catalog.product.new.cards-
catalo...
Developer Documentation / Resource Lists
How do I create my own resource list?
To create a resource list you need a normal Laravel controller and a class that extends Aero\Admin\ResourceListsAbstractactResourceList.
<?php
namespace Acme\MyModule\ResourceLists;
use Aero\Admin\ResourceLists\AbstractResourceList;
class OrdersResourceList extends Ab...
Developer Documentation / Admin Reports
How do I add a table to my custom report?
You need to create a class for your table that extends Aero\Admin\Reports\ReportTableand implements the required publi ...function will be used to return an array containing your tablables columns.
<?php
namespace Acme\MyModule\Reports\Tables;
use Aero\Admin\Reports\Rep...
Developer Documentation / Resource Lists
How do I create a custom bulk action?
If we wish to add a new bulk action to a screen within the admin, all we have to do is create the bulk action using the BulkActionfacade. The bulk action also requires a specific Resource List, for example for Products.
BulkAction::create(BulkActionClass::c...
Catalog Management / Categories
How do I create a new category?
In order to create a new category first navigate to the attributes listings page and cand click the "+ New Categoategory" button at the top of the page.
From here you will be presen ...ted with the form for creating a new category.
The form is grouped into ... with non-required sections collapsed.
Category Information
First...
Developer Documentation / Admin Transformers
How do I add custom data to a transformer?
To add custom data you need to use the static **add()**method on the relevant transformer. This method expects a closure that will return an array of the field(s) to merge into ...the transformers array. The closure will be passed an array of data that you c...
Storefront Developer Documentation / Currencies
What is a fascia currency and how do I use it?
A fascia currency can be set to render a different currency to the one s ...pecified in the store configuration.
Setting the fascia currency
The easiest way to check for and apply the fascia currency is through
storemiddl ...eware. The example snippet below de...
Developer Documentation / Admin Product Picker Component
What are the available events for the product picker?
...ected
This event emits when the action button is clicked (bottom ...right of the modal) and provides an array of all of the selected product(s)/variant(s).
selected
This event emits ... when the action button is clicked (bottom ...right of the modal) and is emitted for each produ...
Developer Documentation / Settings
How do I configure the admin edit page?
By default your setting group is editable through the admin by a generated edit page. You cannot remove this generated edit page but you can stop users from being able to edit the settings using i ...t. It’s important to note that if you disable editing through...
Storefront Developer Documentation / Image Factory
What are the available options for Image factory?
There are several options that can be used to manipulate the image. These can be chained.
path - webp - retina - dpr - flip - contain - crop - upscale - rotate - sharpen - pixelate - quality - invert - greyscale - placeholder - options
path($path)
The
pathoption is use...