diff options
author | Sam Light <sam@lightscale.co.uk> | 2025-03-31 00:49:13 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-03-31 00:49:13 +0100 |
commit | 28e2f2c50c902d6ea09b2d6941c9e71ea07b23eb (patch) | |
tree | 92a7cf5d38f01738ae88e161147a5770f673f105 /src/ScriptFile.php | |
parent | d80d1d27c3a5dcea6f341e0bc29653acfde6b5ea (diff) |
Created files for files to load
Diffstat (limited to 'src/ScriptFile.php')
-rw-r--r-- | src/ScriptFile.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ScriptFile.php b/src/ScriptFile.php new file mode 100644 index 0000000..f8f11cd --- /dev/null +++ b/src/ScriptFile.php @@ -0,0 +1,17 @@ +<?php + +namespace Lightscale\LaralightAssets; + +class ScriptFile extends File +{ + public function __construct(string $path) + { + $this->setPath($path); + } + + public function toHtml(): string + { + $path = $this->getPath(); + return "<script src=\"{$path}\"></script>"; + } +} |