<?php $__env->startSection('content'); ?>
    <!-- Page Heading -->
    <div class="row">
        <div class="col-lg-12">
            <h1 class="page-header">
                Wiadomości ze strony
            </h1>
        </div>
    </div>
    <!-- /.row -->

    <div class="table-responsive">
        <table class="table table-striped table-bordered">
            <thead>
            <tr>
                <th>Nadawca</th>
                <th>Tytuł</th>
                <th>Wiadomość</th>
                <th>Data</th>
            </tr>
            </thead>
            <tbody>
            <?php foreach($messages as $message): ?>
                <tr>
                    <td><?php echo e($message->name); ?><br /><?php echo e($message->email); ?></td>
                    <td><?php echo e($message->subject); ?></td>
                    <td><?php echo e($message->text); ?></td>
                    <td><?php echo e($message->created_at); ?></td>
                </tr>
            <?php endforeach; ?>
            </tbody>
        </table>

        <?php echo $messages->render(); ?>

    </div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>