Laravel-admin: Show里面如何显示富文本信息

Created on 9 Oct 2018  ·  3Comments  ·  Source: z-song/laravel-admin

RT;尝试了用
->as(function ($body){ return "<pre>{$body}</pre>"; });

依然无法显示。是不是空间里面强制识别为文本内容了

Most helpful comment

$show->content()->unescape()->as(function ($body) {
    return "<pre>{$body}</pre>";
});

All 3 comments

$show->content()->unescape()->as(function ($body) {
    return "<pre>{$body}</pre>";
});

Get!完美解决!

Get

Was this page helpful?
0 / 5 - 0 ratings

Related issues

greentornado picture greentornado  ·  3Comments

cdhraesaemer picture cdhraesaemer  ·  3Comments

amun1303 picture amun1303  ·  3Comments

wangwenfan picture wangwenfan  ·  3Comments

qcol picture qcol  ·  3Comments