2022-10-16 21:54:26 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @var string $attributes
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="appointment-status-options" <?= $attributes ?? '' ?>>
|
|
|
|
<ul class="list-group">
|
|
|
|
<!-- JS -->
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<button type="button" class="btn btn-outline-primary btn-sm add-appointment-status-option">
|
|
|
|
<i class="fas fa-plus-square me-2"></i>
|
|
|
|
<?= lang('add') ?>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php section('scripts') ?>
|
|
|
|
|
|
|
|
<script src="<?= asset_url('assets/js/components/appointment_status_options.js') ?>"></script>
|
|
|
|
|
2023-03-13 10:24:43 +03:00
|
|
|
<?php end_section('scripts') ?>
|