| 12345678910111213141516171819 |
- @if (isset($data))
- <script>
- window.filamentData = @js($data)
- </script>
- @endif
- @foreach ($assets as $asset)
- @if (! $asset->isLoadedOnRequest())
- {{ $asset->getHtml() }}
- @endif
- @endforeach
- <style>
- :root {
- @foreach ($cssVariables ?? [] as $cssVariableName => $cssVariableValue) --{{ $cssVariableName }}:{{ $cssVariableValue }}; @endforeach
- }
- @foreach ($customColors ?? [] as $customColorName => $customColorShades) .fi-color-{{ $customColorName }} { @foreach ($customColorShades as $customColorShade) --color-{{ $customColorShade }}:var(--{{ $customColorName }}-{{ $customColorShade }}); @endforeach } @endforeach
- </style>
|