1234567891011121314151617181920 |
- @extends('layouts.app-no-footer')
- @section('content')
- <div class="mcp-theme-1 h-content main-row h-100 d-flex align-items-stretch">
- @yield('page-sidebar')
- <div class="v-content flex-grow-1 d-inline-flex flex-column h-100 w-100">
- <div class="d-flex flex-column">
- <div>
- @yield('page-content')
- </div>
- <div>
- <footer class="text-white text-center py-2 mcp-theme-1 text-white bg-dark-primary">
- <div class="opacity-60 font-size-11">
- Copyright {{date('Y')}} Basic Nutrition, Inc. All rights reserved. Prevalip ® is a registered trademark of Basic Nutrition, Inc.
- </div>
- </footer>
- </div>
- </div>
- </div>
- </div>
- @endsection
|