浏览代码

fixed mcp messages

= 3 年之前
父节点
当前提交
910f31c4ab
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. 14 0
      resources/views/app/mcp/dashboard/messages.blade.php

+ 14 - 0
resources/views/app/mcp/dashboard/messages.blade.php

@@ -0,0 +1,14 @@
+@if(!$incomingSmsMessagesPendingReply || !count($incomingSmsMessagesPendingReply))
+    <div class="px-2 py-3">No messages</div>
+@else
+    <table class="table table-sm m-0">
+        <tbody>
+      
+        </tbody>
+    </table>
+    @if(count($incomingSmsMessagesPendingReply) > 10)
+        <div class="p-2 border-top bg-light text-center">
+            Showing 1 to 10 of {{$incomingSmsMessagesPendingReply}} unstamped memos
+        </div>
+    @endif
+@endif