blank.blade.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!doctype html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta name="csrf-token" content="{{ csrf_token() }}">
  5. <meta name="app-url" content="{{ env('APP_URL')}}">
  6. <!-- Required meta tags -->
  7. <meta charset="utf-8">
  8. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  9. <!-- Favicon -->
  10. <title>{{ config('app.name', 'eCommerce') }}</title>
  11. <!-- google font -->
  12. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700">
  13. <!-- aiz core css -->
  14. <link rel="stylesheet" href="{{ static_asset('assets/css/vendors.css') }}">
  15. <link rel="stylesheet" href="{{ static_asset('assets/css/aiz-core.css') }}">
  16. <script>
  17. var AIZ = AIZ || {};
  18. </script>
  19. </head>
  20. <body>
  21. <div class="aiz-main-wrapper d-flex">
  22. <div class="flex-grow-1">
  23. @yield('content')
  24. </div>
  25. </div><!-- .aiz-main-wrapper -->
  26. <script src="{{ static_asset('assets/js/vendors.js') }}" ></script>
  27. <script src="{{ static_asset('assets/js/aiz-core.js') }}" ></script>
  28. @yield('script')
  29. <script type="text/javascript">
  30. @foreach (session('flash_notification', collect())->toArray() as $message)
  31. AIZ.plugins.notify('{{ $message['level'] }}', '{{ $message['message'] }}');
  32. @endforeach
  33. </script>
  34. </body>
  35. </html>