Update sidebar.blade.php

Adds the ability to insert code snippets into the head and body element laid out by the sidebar with blade by including:

@push('stylesheets')
    <!-- your code -->
@endpush

@push('scripts')
    <!-- your code -->
@endpush
This commit is contained in:
Julian Prieber 2022-05-03 23:27:37 +02:00 committed by GitHub
parent 5586a17b51
commit 4eec538834
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -85,6 +85,8 @@ if ($url1sb->successful() or $url2sb->successful()) {
@else
<link rel="icon" type="image/svg+xml" href="{{ asset('littlelink/images/logo.svg') }}">
@endif
@stack('stylesheets')
</head>
<body>
@ -314,5 +316,7 @@ if(localStorage.getItem("firstTime")==null){
<script src="{{ asset('/studio/js/popper.js') }}"></script>
<script src="{{ asset('/studio/js/bootstrap.min.js') }}"></script>
<script src="{{ asset('/studio/js/main-dashboard.js') }}"></script>
@stack('scripts')
</body>
</html>