diff --git a/src/Views/help.blade.php b/src/Views/help.blade.php index a4ec2139..af3867e4 100644 --- a/src/Views/help.blade.php +++ b/src/Views/help.blade.php @@ -7,7 +7,7 @@
Quarx publishes views and controllers within your application. This allows you to control everything you want. You will find the controllers in: app/Http/Controllers/Quarx
and the views in: resources/views/quarx
. There is also the quarx config which is added to your app's config directory.
Quarx publishes views and controllers within your application. This allows you to control everything you want. You will find the controllers in: app/Http/Controllers/Quarx
and the views in: resources/themes
. There is also the quarx config which is added to your app's config directory.
Quarx will also be able to generate cutom modules which you can find in the following directory: quarx/modules
To generate these files simple run:
@@ -57,7 +57,7 @@and
-Quarx::menu('uuid', 'css-class') // Renders the menu +Quarx::menu('uuid', 'custom-view-path') // Renders the menuand
@@ -67,7 +67,15 @@
By default the homepage has its own template but you can add any by following these details: To create custom templates for different purposes simply make a view in the resources/views/quarx/pages
directory that looks similar to: xxxx-template.blade.php
. This means you still have full control of blade templating but your pages can easily swap out views.
By default the homepage has its own template but you can add any by following these details: To create custom templates for different purposes simply make a view in the resources/themes/pages
directory that looks similar to: xxxx-template.blade.php
. This means you still have full control of blade templating but your pages can easily swap out views.
By default the Quarx has the default theme. You can override this in the config/quarx.php
file. The theme has the namespace of: quarx-frontend::
, and has some Blade directives such as:
+@theme('path') ++
You can generate new themes and publish thier public assets. Consult the documentation for more information about themes.
@stop \ No newline at end of file