![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/clinic.corals.io/resources/views/layouts/ |
<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>@yield('title') | {{ getAppName() }}</title> <!-- Favicon --> <link rel="icon" href="{{ asset(getAppFavicon()) }}" type="image/png"> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Fonts --> <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"/> <!-- General CSS Files --> <link href="{{ asset('web/plugins/global/plugins.bundle.css') }}" rel="stylesheet" type="text/css"/> <link href="{{ asset('backend/css/vendor.css') }}" rel="stylesheet" type="text/css"/> <!-- CSS Libraries --> @stack('css') </head> @php $styleCss = 'style'; @endphp <body id="kt_body" class="header-fixed header-tablet-and-mobile-fixed toolbar-enabled toolbar-fixed toolbar-tablet-and-mobile-fixed aside-enabled aside-fixed" {{ $styleCss }}="--kt-toolbar-height:55px;--kt-toolbar-height-tablet-and-mobile:55px"> <div class="d-flex flex-column flex-root"> <div class="d-flex flex-column flex-column-fluid bgi-position-y-bottom position-x-center bgi-no-repeat bgi-size-contain bgi-attachment-fixed" {{ $styleCss }}="background-image: url({{ asset('web/media/illustrations/progress-hd.png') }})"> @yield('content') </div> </div> <footer> <div class="container-fluid padding-0"> <div class="row align-items-center justify-content-center"> <div class="col-xl-6"> <div class="copyright text-center text-muted"> {{ __('messages.all_rights_reserved') }} © {{ date('Y') }} <a href="/" class="font-weight-bold ml-1" target="_blank">{{ getAppName() }}</a> </div> </div> </div> </div> </footer> <!-- Scripts --> <script src="{{ asset('backend/js/vendor.js') }}"></script> <script src="{{ asset('backend/js/3rd-party-custom.js') }}"></script> @stack('scripts') <script> $(document).ready(function () { $('.alert').delay(5000).slideUp(300); }); </script> </body> </html>