diff options
author | Sam Light <sam@lightscale.co.uk> | 2025-03-31 23:48:58 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-03-31 23:48:58 +0100 |
commit | 055a384dd3eb8cf1ee0202f2eb25b86d4a3a515f (patch) | |
tree | df2374e7353c91cf11e76478b7c4c7f581afde96 | |
parent | d7f727c0fce74f5b1b05ebcbf39591b120bf4474 (diff) |
Made the components works
-rw-r--r-- | resources/views/components/footer.blade.php | 3 | ||||
-rw-r--r-- | resources/views/components/head.blade.php | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/resources/views/components/footer.blade.php b/resources/views/components/footer.blade.php index 7cfc4fc..6074474 100644 --- a/resources/views/components/footer.blade.php +++ b/resources/views/components/footer.blade.php @@ -1 +1,4 @@ @inject('assets', 'Lightscale\LaralightAssets\Assets') +@foreach ($assets->getQueuedFooterFiles() as $file) + {{ $file }} +@endforeach diff --git a/resources/views/components/head.blade.php b/resources/views/components/head.blade.php index 7cfc4fc..be94ef9 100644 --- a/resources/views/components/head.blade.php +++ b/resources/views/components/head.blade.php @@ -1 +1,4 @@ @inject('assets', 'Lightscale\LaralightAssets\Assets') +@foreach ($assets->getQueuedHeadFiles() as $file) + {{ $file }} +@endforeach |