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 72a4838 commit fefc6b4Copy full SHA for fefc6b4
resources/views/components/cachet.blade.php
@@ -27,6 +27,8 @@
27
--{{ $key }}-dark: {{ $value[1] }};
28
@endforeach
29
}
30
+
31
+ {!! $cachet_css !!}
32
</style>
33
</head>
34
<body class="flex min-h-screen flex-col items-stretch antialiased">
src/View/Components/Cachet.php
@@ -33,6 +33,7 @@ public function render(): View|Closure|string
return view('cachet::components.cachet', [
'title' => $this->title,
35
'cachet_header' => $this->customizationSettings->header,
36
+ 'cachet_css' => $this->customizationSettings->stylesheet,
37
'cachet_footer' => $this->customizationSettings->footer,
38
'refresh_rate' => $this->appSettings->refresh_rate,
39
]);
0 commit comments