From c4f93b08d8613d7c5cf34fdbb9c5fe69b32da2f4 Mon Sep 17 00:00:00 2001 From: Atanas Ginev Date: Fri, 13 Apr 2018 16:37:53 +0300 Subject: [PATCH] Enable HTML column title when not sortable https://github.com/aginev/datagrid/issues/9 --- src/Views/grid.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/grid.blade.php b/src/Views/grid.blade.php index 68496c3..3854581 100644 --- a/src/Views/grid.blade.php +++ b/src/Views/grid.blade.php @@ -25,7 +25,7 @@ @if ($col->isSortable()) {!! $col->getTitle() !!} @else - {{ $col->getTitle() }} + {!! $col->getTitle() !!} @endif @else