Is it possible to add content on the somewhat unused right side of edit page? #981
-
In the add/edit page of Twill for one of my modules I want to add some extra tips on content editing. It would be great to use some of the empty space below the right side status/update box. Stacking some extra content there is what WordPress does in it's classic interface (sorry if that is a dirty word here) and I thought that in this respect it would be useful to replicate something similar. Is there any way of adding this via view files or something similar ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @Arkid, This is not yet well documented but there are a few Blade sections you can use to inject content into your CMS pages. The one you are looking for is resources/views/admin/mymodule/form.blade.php
To get an overview of what's available, you can search for Hope this helps! |
Beta Was this translation helpful? Give feedback.
Hey @Arkid,
This is not yet well documented but there are a few Blade sections you can use to inject content into your CMS pages. The one you are looking for is
sideFieldsets
:resources/views/admin/mymodule/form.blade.php
To get an overview of what's available, you can search for
@yield
in the Twill source code (under views/layouts/).Hope this helps!