We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca0c44d commit 27668a8Copy full SHA for 27668a8
src/Html/Column.php
@@ -437,6 +437,20 @@ public function render($value)
437
return $this;
438
}
439
440
+ /**
441
+ * Set column renderer with give raw value.
442
+ *
443
+ * @param mixed $value
444
+ * @return $this
445
+ * @see https://datatables.net/reference/option/columns.render
446
+ */
447
+ public function renderRaw($value)
448
+ {
449
+ $this->attributes['render'] = $value;
450
+
451
+ return $this;
452
+ }
453
454
/**
455
* Parse render attribute.
456
*
0 commit comments