Webinterface/storage/framework/views/13576efe1f26464764d7cf7faf41ff72.php

100 lines
4.8 KiB
PHP
Raw Permalink Normal View History

2024-03-27 10:05:41 +00:00
<div>
<!--[if BLOCK]><![endif]--><?php if($warning !== ""): ?>
<div class="p-3 m-2 bg-danger bg-opacity-10 border border-danger rounded text-danger">
<?php echo e($warning); ?>
</div>
<?php endif; ?><!--[if ENDBLOCK]><![endif]-->
<!--[if BLOCK]><![endif]--><?php if($success !== ""): ?>
<div class="p-3 m-2 bg-success bg-opacity-10 border border-success rounded text-success">
<?php echo e($success); ?>
</div>
<?php endif; ?><!--[if ENDBLOCK]><![endif]-->
<br/> <br/> <br/> <br/>
<div class="main border border-secondary rounded">
<p class="fs-2">Tables</p>
<!--[if BLOCK]><![endif]--><?php if($this->tables): ?>
<button wire:click="newTable" class="list-button bg-success bg-opacity-75 border border-success rounded text-light right mb-2"><i class="fa-solid fa-plus"></i> <span>Create</span></button>
<?php endif; ?><!--[if ENDBLOCK]><![endif]-->
</br> </br>
<!--[if BLOCK]><![endif]--><?php $__currentLoopData = $this->tableList; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $table): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="table">
<button wire:click.prevent="viewTable('<?php echo e($table); ?>')" class="list-button bg-success bg-opacity-75 border border-success rounded text-light p-1"><i class="fa-solid fa-eye"></i> <span><?php echo e($table); ?></span></button>
<button wire:click.prevent="deleteTableModal('<?php echo e($table); ?>')" class="list-button bg-danger bg-opacity-75 border border-danger rounded text-light rounded p-1"><i class="fa-solid fa-trash"></i></button>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><!--[if ENDBLOCK]><![endif]-->
</div>
<div class="modal fade" id="createModal" tabindex="-1" aria-labelledby="createModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="createModalLabel">New Table</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form wire:submit.prevent="createTable">
<div class="mb-3">
<label for="recipient-name" class="col-form-label">Name</label>
<input wire:model="tableName" type="text" class="form-control" id="recipient-name">
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="bg-danger bg-opacity-75 border border-danger rounded text-light" data-bs-dismiss="modal">Cancel</button>
<button wire:click.prevent="createTable" type="button" class="bg-success bg-opacity-75 border border-success rounded text-light">Create</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="deleteModal" tabindex="-1" aria-labelledby="deleteModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5 overflow-2" id="deleteModalLabel"><?php echo e($this->deleteTableName); ?></h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<p>Are you sure you want to delete the Table?</p>
</div>
<div class="modal-footer">
<button type="button" class="bg-danger bg-opacity-75 border border-danger rounded text-light" data-bs-dismiss="modal">Cancel</button>
<button wire:click="deleteTable" type="button" class="bg-success bg-opacity-75 border border-success rounded text-light">Delete</button>
</div>
</div>
</div>
</div>
<?php
$__scriptKey = '1093951355-0';
ob_start();
?>
<script>
window.addEventListener('showCreate', event => {
$('#createModal').modal('show');
});
window.addEventListener('hideCreate', event => {
$('#createModal').modal('hide');
});
window.addEventListener('showDelete', event => {
$('#deleteModal').modal('show');
});
window.addEventListener('hideDelete', event => {
$('#deleteModal').modal('hide');
});
</script>
<?php
$__output = ob_get_clean();
\Livewire\store($this)->push('scripts', $__output, $__scriptKey)
?>
</div><?php /**PATH /home/collin/Webinterface/laravel/resources/views/livewire/index.blade.php ENDPATH**/ ?>