run through pint

This commit is contained in:
2023-11-23 15:34:20 +05:00
parent fe68420bab
commit 7372435e56
9 changed files with 9 additions and 25 deletions

View File

@@ -13,8 +13,8 @@ class BranchNovaRepo
{
return function ($field, $request, $formData) {
$field->options(
$formData->region
? Branch::where('region', $formData->region)->pluck('name', 'id')
$formData->region
? Branch::where('region', $formData->region)->pluck('name', 'id')
: []
);
};