I need help to setup RTL??
I need help to setup RTL and chang between RTL & LTR
Replies (1)
Hi
To enable right-to-left (RTL) support in Metronic Laravel, follow these steps:
Run the following command to build assets with RTL support:
npm run dev --rtl In the /config/settings.php file, set the KT_THEME_DIRECTION variable to 'rtl':
"KT_THEME_DIRECTION" => "rtl", This option will set the text direction in/app/Core/KTBootstrap.php using the setDirection method:
setDirection(config("settings.KT_THEME_DIRECTION"));