RTL Version
To have dark mode enabled, replace the reference of
app.min.css
to
app.min.rtl.css
and
bootstrap.min.css
to
bootstrap.min.rtl.css
in the
resources/views/layouts/head-css.blade.php
and
update add attribute dir="rtl"
to the html tag in the
resources/views/layouts/master.blade.php
file as below
example.
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" dir="rtl">
Make sure to update the resources/js/app.js
has initSettings()
function which you need to comment out. Because it will set to default the
LTR version.