blob: 000721568143beeacf22527d73a24c70860a8aae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
namespace Lightscale\LaralightAssets;
class StyleFile extends File
{
public function toHtml(): string
{
$path = $this->getUrl();
return "<link type=\"text/css\" rel=\"stylesheet\" href=\"{$path}\" />";
}
}
|