<?php namespace App\Services; class CustomService { public function getSmthUsefull() { $data = [ 'content' => 'Some very <u>precious</u> info!', ]; return view('widgets.custom', $data); } }