在laravel中从数据库中打印刀片指令

I want to return blade directives inside another directive (data stored in database)

Example + Code

{{$category->title}} shows category title but it also stored in another table in database like category {{$category->title}} has 45 posts and etc. (some additional texts) then I get this in my blade:

{!!$myCustom!!} so this myCustom has to print something like:

category LARAVEL has 45 posts and etc.

but what I get currently is:

category {{$category->title}} has 45 posts and etc.

The title part won't print.

Any idea?