Skip to content

Commit 7589b66

Browse files
committed
fix: cs
1 parent 8dbfa91 commit 7589b66

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/Html/SearchPane.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,7 @@ public function hideTotal(bool $value = true): static
223223
*/
224224
public function modelOptions(EloquentBuilder|string $model, string $value, string $key = 'id'): SearchPane
225225
{
226-
return $this->options(
227-
Options::model($model, $value, $key)
228-
);
226+
return $this->options(Options::model($model, $value, $key));
229227
}
230228

231229
/**
@@ -261,9 +259,7 @@ public function tableOptions(
261259
Closure $callback = null,
262260
string $connection = null
263261
): static {
264-
return $this->options(
265-
Options::table($table, $value, $key, $callback, $connection)
266-
);
262+
return $this->options(Options::table($table, $value, $key, $callback, $connection));
267263
}
268264

269265
/**

0 commit comments

Comments
 (0)