This commit is contained in:
2022-07-30 22:50:48 -04:00
parent 7b8d0e2f69
commit 00ea96c103
@@ -0,0 +1,68 @@
<!--begin::Toolbar-->
<div class="d-flex flex-wrap flex-stack my-5">
<!--begin::Heading-->
<h3 class="fw-bolder my-2">Uploaded Files
<span class="fs-6 text-gray-400 fw-bold ms-1">+<?=count($files_only)?></span></h3>
<!--end::Heading-->
<!--begin::Controls-->
<div class="d-flex my-2">
</div>
<!--end::Controls-->
</div>
<!--end::Toolbar-->
<!--begin::Row-->
<div class="row g-6 g-xl-9 mb-6 mb-xl-9">
<?php
foreach ($files_only as $row) {
$pieces = explode(".", $row->message);
?>
<div class="col-md-6 col-lg-4 col-xl-3">
<!--begin::Card-->
<div class="card h-100">
<!--begin::Card body-->
<div class="card-body d-flex justify-content-center text-center flex-column p-8">
<!--begin::Name-->
<a href="../../demo8/dist/apps/file-manager/files.html" class="text-gray-800 text-hover-primary d-flex flex-column">
<!--begin::Image-->
<div class="symbol symbol-60px mb-5">
<img src="/site3/assets/media/svg/files/<?=$pieces[1]?>.svg" alt="" />
</div>
<!--end::Image-->
<!--begin::Title-->
<div class="fs-5 fw-bolder mb-2"> <?= $row->msg?></div>
<!--end::Title-->
</a>
<!--end::Name-->
<!--begin::Description-->
<div class="fs-7 fw-bold text-gray-400"><?=$row->date1?></div>
<!--end::Description-->
</div>
<!--end::Card body-->
</div>
<!--end::Card-->
</div>
<?php
}
?>
<!--begin::Col-->
<div class="col-md-6 col-lg-4 col-xl-3">
<!--begin::Card-->
<div class="card h-100 flex-center bg-light-primary border-primary border border-dashed p-8">
<!--begin::Image-->
<img src="/site3/assets/media/svg/files/upload.svg" class="mb-5" alt="" />
<!--end::Image-->
<!--begin::Link-->
<a href="#" class="text-hover-primary fs-5 fw-bolder mb-2">File Upload</a>
<!--end::Link-->
<!--begin::Description-->
<div class="fs-7 fw-bold text-gray-400">...</div>
<!--end::Description-->
</div>
<!--end::Card-->
</div>
<!--end::Col-->
</div>
<!--end:Row-->