Recently Updated Pages
How do I handle translations?
When defining your setting groups title/summary, or a settings label/hint you can make use of Lar...
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 ...
How do I access a custom setting?
You can access a setting by using the settingfunction that is available in PHP, Blade, and Twig. ...
What are the available setting types?
Setting Description $group->array(‘allow_list’); Returns an array. $group->boolean(‘enabled’); Re...
How do I register custom settings?
To register settings you need to use the Aero\Common\Facades\Settingsfacade from the setupmethod ...
What are the settings available to developers?
Settings allow you to add dynamic values to your modules that can be modified by admin users easi...
Do do I set the default value of my custom setting?
You can add a default value to any setting by using the defaultmethod and passing your default va...
How do I change the response view?
For responses that return HTML, a Twig view file is used. Whilst these are originally defined, th...
What are the available responses from the response builder?
Core Class Description View Homepage The homepage of the store. homepage.twig ProductPage The pro...
How do I extend responses?
Adding additional code to run on the response is as simple as calling the **extend()**method on t...
How do I set response headers?
When extending the response builder, you can set HTTP headers to be sent with the response: \Aero...
How do I attach middlewear to a response builder?
Since Aero does not expose the underlying routes and controllers, middleware can be attached dire...
How do I set the response status code?
There may be situations where the HTTP response status needs to be altered. By default, the retur...
How do I pass data to a response?
The most common task performed when extending responses, is setting additional data. Typically, f...
How do I redirect a response?
Sometimes you may wish to redirect the user to another location, either to an external site or wi...
How do I access the properties of the response builder?
All response builders hold properties that were assigned to them upon creation from the request. ...
What is a bulk action?
A bulk action allows for the selection of multiple values from a list, and apply some logic to it...
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\Admi...
What are the default resource lists?
The following classes are in the Aero\Admin\ResourceListsnamespace and any class that doesn’t hav...
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...