-
I'm still new to the orchid platform, my question is can I add custom pages in the administrator dashboard to do some advanced actions with their views that cannot be done using orchid solution ? (charts and datatable.js with advanced and complicated editions) |
Beta Was this translation helpful? Give feedback.
Answered by
tabuna
Oct 15, 2021
Replies: 1 comment
-
The easiest way is to call the template you need right on the screen: use Orchid\Support\Facades\Layout;
public function layout(): array
{
return [
Layout::view('myTemplate'),
];
} You can find out more on this page: https://orchid.software/en/docs/custom-template/#views |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
belhauss
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The easiest way is to call the template you need right on the screen:
You can find out more on this page: https://orchid.software/en/docs/custom-template/#views