简体   繁体   中英

how show text form contact.blade.php in the message in laravel

I makes website by laravel as multi language

and I make full switches to change the language and it work as the flowing code

<?php
return [
'home_menu'=>'home',
'about_menu'=>'about',
'contact_menu'=>'contact',
'message'=>'<h1> welcoome</h1>',
];

Now I need to show text from contact.blade.php from resource/views Instead of welcoome .

There are many ways you can show your translations in Laravel

    {{ trans(filename.arrayIndex) }}
    @lang(filename.arrayIndex)

and in case you have html in your translations then

    {!! trans(filename.arrayIndex) !!}

I hope this will help you but you must check all the Laravel documentation before starting the project. It will really help you understanding the Lara Concept better

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM