html si en change en ltr
<?php
$language = str_replace('_', '-', app()->getLocale());
if ($language == 'ar') {
$dir = 'rtl';
} else {
$dir = 'ltr';
}
?>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" dir="<?php echo $dir; ?>">
</html>
Snippets