jeremykenedy / laravel-users

A Users Management Package that includes all necessary routes, views, models, and controllers for a user management dashboard and associated pages for managing Laravels built in user scaffolding. Built for Laravel 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6.0, 7.0 and 8.0.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Invalid translations - html entities

xorock opened this issue · comments

Hello.
I did clean install of LV 5.6 + this package. Unfortunately all icons are displayed as html entities not as parsed HTML which is default behaviour of blade templates. Could You fix it?

Hello,
Thank you for using the package.
I am unable to replicate the issue. Can you please provide a screenshot and steps you took.
Thank you.

lv

lv2

It was standard installation. composer.json:

"require": {
        "php": "^7.1.3",
        "barryvdh/laravel-ide-helper": "^2.5",
        "fideloper/proxy": "^4.0",
        "jeremykenedy/laravel-users": "^3.1",
        "laravel/framework": "5.6.*",
        "laravel/tinker": "^1.0"
    },
    "require-dev": {
        "barryvdh/laravel-debugbar": "^3.2",
        "filp/whoops": "^2.0",
        "fzaninotto/faker": "^1.4",
        "mockery/mockery": "^1.0",
        "nunomaduro/collision": "^2.0",
        "phpunit/phpunit": "^7.0"
    },
composer create-project --prefer-dist laravel/laravel blog "5.6.*" 
composer require jeremykenedy/laravel-users
php artisan make:auth
php artisan vendor:publish --tag=laravelusers
php artisan migrate

It's something with using @lang which equivalates to using {{ }}, as soon as time allows I will test with replacing the @lang with {!! !!} syntax to see if that may fix it.

This commit c6af076 has solved this. Thanks!