I am try to add in php view not in php blade but its showing only <style></style> tag not the actual tag with url. Below is my code.
Controller
$css["css"] = array(url("/") . '/assets/css/web/register.css');
Php View
<?php if (isset($css)) { foreach ($css as $style) { echo \Minify::stylesheet($style); }} ?>