Skip to content

Commit

Permalink
修复为空
Browse files Browse the repository at this point in the history
  • Loading branch information
yangweijie committed Sep 30, 2022
1 parent ce7e264 commit 9a6a372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Payloads/TablePayload.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function __construct(
$data = [],
$name = ''
) {
if (blank($this->name)) {
if (empty($this->name)) {
$this->name = 'Table';
}
$this->data = $data;
Expand Down

0 comments on commit 9a6a372

Please sign in to comment.