File: /home/xedaptot/be.naniguide.com/storage/framework/views/ae26f1eb259da6bb75a435a1da816c1e.php
<?php $__env->startSection('title', trans('messages.my_lists')); ?>
<?php $__env->startSection('page_header'); ?>
<div class="page-title">
<ul class="breadcrumb breadcrumb-caret position-right">
<li class="breadcrumb-item"><a href="<?php echo e(action("HomeController@index"), false); ?>"><?php echo e(trans('messages.home'), false); ?></a></li>
</ul>
<h1>
<span class="text-semibold"><span class="material-symbols-rounded">format_list_bulleted</span> <?php echo e(trans('messages.my_lists'), false); ?></span>
</h1>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="listing-form" id="ListsIndexContainer">
<div class="d-flex top-list-controls top-sticky-content">
<div class="me-auto">
<?php if(Auth::user()->customer->local()->listsCount() >= 0): ?>
<div class="filter-box">
<div class="checkbox inline check_all_list">
<label>
<input type="checkbox" name="page_checked" class="styled check_all">
</label>
</div>
<div class="dropdown list_actions" style="display: none">
<button type="button"
class="btn btn-secondary dropdown-toggle"
data-bs-toggle="dropdown"
>
<?php echo e(trans('messages.actions'), false); ?> <span class="number"></span><span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li>
<a
class="dropdown-item"
link-confirm-url="<?php echo e(action('MailListController@deleteConfirm'), false); ?>"
link-method="POST"
href="<?php echo e(action('MailListController@delete'), false); ?>"
>
<span class="material-symbols-rounded">delete_outline</span> <?php echo e(trans('messages.delete'), false); ?></a>
</li>
</ul>
</div>
<span class="filter-group">
<span class="title text-semibold text-muted"><?php echo e(trans('messages.sort_by'), false); ?></span>
<select class="select" name="sort_order">
<option value="created_at"><?php echo e(trans('messages.created_at'), false); ?></option>
<option value="name"><?php echo e(trans('messages.name'), false); ?></option>
</select>
<input type="hidden" name="sort_direction" value="desc" />
<button type="button" class="btn btn-light sort-direction" data-popup="tooltip" title="<?php echo e(trans('messages.change_sort_direction'), false); ?>" role="button" class="btn btn-xs">
<span class="material-symbols-rounded">sort</span>
</button>
</span>
<span class="text-nowrap">
<input type="text" name="keyword" class="form-control search" value="<?php echo e(request()->keyword, false); ?>" placeholder="<?php echo e(trans('messages.type_to_search'), false); ?>" />
<span class="material-symbols-rounded">search</span>
</span>
</div>
<?php endif; ?>
</div>
<div class="text-end">
<?php if(Auth::user()->customer->can('create', new Acelle\Model\MailList())): ?>
<a href="<?php echo e(action("MailListController@create"), false); ?>" role="button" class="btn btn-secondary">
<span class="material-symbols-rounded">add</span> <?php echo e(trans('messages.create_list'), false); ?>
</a>
<?php endif; ?>
</div>
</div>
<div id="ListsIndexContent"></div>
</div>
<script>
var ListsIndex = {
list: null,
getList: function() {
if (this.list == null) {
this.list = makeList({
url: '<?php echo e(action('MailListController@listing'), false); ?>',
container: $('#ListsIndexContainer'),
content: $('#ListsIndexContent')
});
}
return this.list;
}
};
$(document).ready(function() {
ListsIndex.getList().load();
});
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.core.frontend', [
'menu' => 'list',
], array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /home/xedaptot/be.naniguide.com/resources/views/lists/index.blade.php ENDPATH**/ ?>