<!doctype html>
<html lang="<?php echo e(str_replace('_', '-', app()->getLocale())); ?>">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- CSRF Token -->
    <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>">

    <title><?php echo e(config('app.name', 'Laravel')); ?></title>

    <!-- Favicon Icon -->
    <link rel="shortcut icon" href="<?php echo e(asset('welcome/images/favicon.ico')); ?>"/>

    <!-- Scripts -->
    <script src="<?php echo e(asset('js/app.js')); ?>"></script>
    <script src="https://cdn.jsdelivr.net/npm/chart.js@3.0.0/dist/chart.min.js"></script>

    <!-- Fonts -->
    <link rel="dns-prefetch" href="//fonts.gstatic.com">
    <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">

    <!-- Styles -->
    <link href="<?php echo e(asset('css/app.css')); ?>" rel="stylesheet">

    <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0"></script>
    <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-zoom@1.1.1"></script>
    
    <?php echo $__env->yieldContent('unique-css'); ?>
</head>
<body>

<?php echo $__env->make('layouts.includes.analytics', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>

<div id="app">
    <?php echo $__env->make('layouts.includes.navbar', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>

    <main class="py-4">
        <?php echo $__env->yieldContent('content'); ?>
    </main>

    <div class="prepare-footer"></div>
</div>

<footer class="footer">
    <div class="container">
        <span class="float-left">Copyright © 2021 Société APTILIS</span>
        <?php if(auth()->guard()->check()): ?>
            <span id="nom-structure-utilisateur" class="float-right"><?php echo e(Auth::user()->structure->nom); ?></span>
            <div class="clearfix"></div>
        <?php endif; ?>
    </div>
</footer>


<?php echo $__env->yieldContent('unique-js'); ?>
</body>
</html>

<script>
    Chart.register(ChartDataLabels);
    Chart.register(zoomPlugin);

    $(document).ready(function () {
        $('[data-toggle="tooltip"]').tooltip();
    });
</script>
<?php /**PATH /var/www/html/resources/views/layouts/app.blade.php ENDPATH**/ ?>