Viewing file: 0e588d53c057d600feb071e09e3602f8c9fbcbca.php (4.35 KB) -rwxrwxr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title', trans('layout.contact_message')); ?>
<?php $__env->startSection('css'); ?> <link href="https://cdn.jsdelivr.net/npm/summernote@0.9.0/dist/summernote.min.css" rel="stylesheet"> <style> .modal-content-section.mt-4 { overflow-x: scroll; } </style> <?php $__env->stopSection(); ?>
<?php $__env->startSection('main-content'); ?> <div class="row page-titles mx-0"> <div class="col-sm-6 p-md-0"> <div class="welcome-text"> <h4><?php echo e(trans('layout.contact_messages')); ?></h4> <p class="mb-0"></p> </div> </div> <div class="col-sm-6 p-md-0 justify-content-sm-end mt-2 mt-sm-0 d-flex"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#"><?php echo e(trans('layout.home')); ?></a></li> <li class="breadcrumb-item active"><a href="javascript:void(0)"><?php echo e(trans('layout.contact_message')); ?></a></li> </ol> </div> </div>
<div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-header"> <h4 class="card-title"><?php echo e(trans('layout.list')); ?></h4> </div> <div class="card-body"> <div class="table-responsive"> <table class="table table-responsive-md"> <thead class="text-center"> <tr> <th><strong><?php echo e(trans('layout.name')); ?></strong></th> <th><strong><?php echo e(trans('layout.email')); ?></strong></th> <th><strong><?php echo e(trans('layout.phone')); ?></strong></th> <th><strong><?php echo e(trans('message')); ?></strong></th> <th><strong><?php echo e(trans('layout.action')); ?></strong></th> </tr> </thead> <tbody class="text-center"> <?php $__currentLoopData = $contact_messages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $contact_message): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($contact_message->name); ?></td> <td><?php echo e($contact_message->email); ?></td> <td><?php echo e($contact_message->phone); ?></td> <td><?php echo e($contact_message->message); ?></td> <td> <div class="dropdown"> <button type="button" class="btn btn-success light sharp" data-toggle="dropdown"> <i class="fa fa-ellipsis-v"></i> </button> <div class="dropdown-menu">
<button class="dropdown-item" data-message="<?php echo e(trans('Are you sure you want to delete this contact?')); ?>" data-action="<?php echo e(route('contact-message.destroy', $contact_message->id)); ?>" data-input='{"_method":"delete"}' data-toggle="modal" data-target="#modal-confirm"> <?php echo e(trans('layout.delete')); ?>
</button> </div> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> </div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('js'); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.dashboard', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/qr.picotech.app/public_html/resources/views/contact/index.blade.php ENDPATH**/ ?>
|