Viewing file: 8279dada2dab92b2726d2e390dab9e27c43e738a.php (3.84 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('page_title', __('Forms')); ?>
<?php $__env->startSection('content'); ?>
<div class="col-md-12 list-container">
<div class="card">
<div class="card-header d-md-flex justify-content-between align-items-center">
<h5><a href="<?php echo e(route('formbuilder::forms.index')); ?>"><?php echo e(__('Forms')); ?></a></h5>
<div class="d-md-flex mt-2 mt-md-0">
<div role="toolbar">
<div class="btn-group d-flex flex-wrap" role="group">
<a href="<?php echo e(route('formbuilder::forms.create')); ?>" class="btn mt-2 mt-sm-0 btn-primary btn-sm mb-0 <?php echo e(languageDirection() == 'ltr' ? 'me-2' : 'ms-2'); ?>">
<i class="fa fa-plus"></i> <?php echo e(__('Add New Form')); ?>
</a>
<a href="<?php echo e(route('formbuilder::submissions.all')); ?>" class="btn mt-2 mt-sm-0 btn-primary mb-0 btn-sm <?php echo e(languageDirection() == 'ltr' ? 'me-2' : 'ms-2'); ?>">
<i class="fa fa-th-list neg-transition-scale"></i> <?php echo e(__('Submissions')); ?>
</a>
<a href="javascript:void(0);" class="btn btn-primary mt-2 mt-sm-0 btn-sm <?php echo e(languageDirection() == 'ltr' ? 'me-2' : 'ms-2'); ?>" data-bs-toggle="collapse"
data-bs-target="#filterPanel" aria-expanded="true" aria-controls="filterPanel">
<i class="fas fa-filter"></i><?php echo e(__('Filter')); ?>
</a>
</div>
</div>
</div>
</div>
<div class="card-header p-0 collapse" id="filterPanel">
<div class="row mx-2 my-3">
<div class="col-md-3">
<select class="select2-hide-search filter" name="visibility">
<option value=""><?php echo e(__('All Visibility')); ?></option>
<option value="PUBLIC"><?php echo e(__('Public')); ?></option>
<option value="PUBLIC"><?php echo e(__('Private')); ?></option>
</select>
</div>
<div class="col-md-3">
<select class="select2-hide-search filter" name="type">
<option value=""><?php echo e(__('All Types')); ?></option>
<option value="Survey"><?php echo e(__('Survey')); ?></option>
<option value="contact_form"><?php echo e(__('Contact Form')); ?></option>
<option value="others"><?php echo e(__('Others')); ?></option>
</select>
</div>
</div>
</div>
<div class="card-body px-4 product-table">
<div class="card-block pt-2 px-0">
<div class="col-sm-12 hide-export">
<?php echo $__env->make('admin.layouts.includes.yajra-data-table', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
</div>
</div>
</div>
<?php echo $__env->make('admin.layouts.includes.delete-modal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('formbuilder::layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/ecom1.picotech.app/public_html/Modules/FormBuilder/Resources/views/forms/index.blade.php ENDPATH**/ ?>
|