i have created helper file for my laravel project to fetch data from widget model.The code is given below
function getWidget($slug)
{
$widget = Widget::whereSlug($slug)->first();
return $widget;
}
and i put below code in 'view' to display widget content.But content displaying html tags in view page.
@php
$widgetNetworkHome = getWidget('networks-home');
@endphp
@if(!empty($widgetNetworkHome))
{!! $widgetNetworkHome->content !!}
@endif
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire