123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!DOCTYPE html>
- <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{{ config('app.name') }}</title>
- <!-- Fonts -->
- <link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">
- <!-- <link href="{{ asset('bootstrap-4.5.0/css/bootstrap.css') }}" rel="stylesheet"> -->
- <link rel="stylesheet" href="/fontawesome-free-5.13.1-web/css/all.min.css">
- <link href="{{ asset('/css/app.css') }}?v={{config('app.asset_version')}}" rel="stylesheet">
- <link href="{{ asset('/css/style.css') }}?v={{config('app.asset_version')}}" rel="stylesheet">
- <link href="{{ asset('/css/yemi.css') }}?v={{config('app.asset_version')}}" rel="stylesheet">
- <link rel="stylesheet" href="{{ asset('/css/toastr.min.css') }}">
- <link href="{{asset('/css/z.css')}}?v={{config('app.asset_version')}}" rel=stylesheet>
- <!-- Styles -->
- {{-- inline bootstrap datepicker --}}
- {{-- <link href='/bootstrap-datepicker/css/bootstrap-datepicker.standalone.min.css' rel="stylesheet">
- <script src='/bootstrap-datepicker/js/bootstrap-datepicker.min.js'></script>--}}
- <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
- @yield('head')
- </head>
- <body>
- <main role="main" class="stag-content px-0 mcp-theme-1">
- @yield('content')
- </main><!-- /.container -->
- <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/dt-1.10.24/fc-3.3.2/fh-3.1.8/datatables.min.css"/>
- </body>
- </html>
|