Skip to content

Commit 1000939

Browse files
committedFeb 28, 2023
UI fixes
1 parent ee4ee87 commit 1000939

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed
 

‎resources/views/table/table.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@unless($headless)
2323
@isset($head)
2424
{{ $head }}
25-
@else
25+
@elseif(count($table->resource))
2626
@include('splade::table.head')
2727
@endisset
2828
@endunless

‎resources/views/table/wrapper.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="flex flex-col mt-3">
22
<div class="-my-2 overflow-x-auto">
33
<div class="py-2 align-middle inline-block min-w-full sm:px-px">
4-
<div class="shadow relative sm:rounded-md sm:overflow-hidden">
4+
<div class="shadow-sm relative border border-gray-200 sm:rounded-md sm:overflow-hidden">
55
{{ $slot }}
66
</div>
77
</div>

‎src/Components/Table.php

+4
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ public function showPaginator(): bool
4848
return false;
4949
}
5050

51+
if ($resource->isEmpty()) {
52+
return false;
53+
}
54+
5155
return SpladeTable::hidesPaginationWhenResourceContainsOnePage()
5256
? $resource->hasPages()
5357
: true;

0 commit comments

Comments
 (0)
Please sign in to comment.