我在我的数据库中动态存储页面(页面表)。
当我在我的数据库中存储{{ trans('langfile.key') }}
之类的刀片功能,然后在我的视图中显示它时,不会触发刀片{{}}
功能。关于如何实现这个目标的任何想法?
表格行
1 test This is our test title {{ trans('commons.mobile') }} 2016-10-06 08:37:49 2016-10-06 08:42:48
控制器
public function show(Request $request, $slug){
$page= DB::table('pages')->where('slug', $slug)->first();
return View::make('page')->with('page', $page->page_content);
}
查看
@extends('layouts.app')
@section('content')
<div class="container contentpadding"></div>
{!! $page !!}
@stop
结果是{{ trans('commons.mobile') }}
而非移动(如果lang = us)