<!DOCTYPE html>
<html lang="<?php echo e(str_replace('_', '-', app()->getLocale())); ?>">
    <head>
        <?php echo $__env->make('frontend.layouts.common.head', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
    </head>
    <body class="text-dark">
        <?php echo $__env->yieldPushContent('body.prepend'); ?>

        <?php $__env->startSection('header'); ?>
            <?php echo $__env->make('frontend.sections.header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
        <?php echo $__env->yieldSection(); ?>

        <?php echo $__env->yieldContent('main'); ?>

        <?php $__env->startSection('footer'); ?>
            <?php echo $__env->make('frontend.sections.footer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
        <?php echo $__env->yieldSection(); ?>

        <?php echo $__env->yieldPushContent('body.append'); ?>
    </body>
</html>
<?php /**PATH /home/pluma/web/lcrh/resources/views/frontend/layouts/default.blade.php ENDPATH**/ ?>