restore composer.json, add mysqli extension

This commit is contained in:
2026-04-15 17:02:52 +05:00
commit 77cf56a348
4317 changed files with 1397107 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<template>
<div class="media msg">
<div class="media-body">
<small class="pull-right time">
<i class="fas fa-calendar-alt mr-2"></i> {{ comment.created_at }}
</small>
<h5 class="media-heading">{{ comment.first_name }}</h5>
<small v-html="comment.body"></small>
</div>
</div>
</template>
<script>
export default {
props: ['commentData'],
data() {
return {
comment: this.commentData
}
}
}
</script>
<style scoped>
</style>