0

I have sample file structure in my app: Folders:

lang->en->admin

Here I have sample localization file:

menu.php

Code in file:

<?php
return [
    'home' => 'Admin Dashboard',
];

How I can get home key value in blade?

I now tested this example code but not work:

{{__(admin/menu.home)}}
{{__(admin\menu.home)}}
Andreas Hunter
  • 4,504
  • 11
  • 65
  • 125

1 Answers1

1

In your views change this to

{{__(admin/menu.home)}}
{{__(admin\menu.home)}}

This

{{__('admin/menu.home')}}
{{__('admin\menu.home')}}
FULL STACK DEV
  • 15,207
  • 5
  • 46
  • 66