removes data dump

This commit is contained in:
Godfrey M 2022-11-15 15:59:47 -08:00
parent 90828e3a87
commit 8a0517fb5d
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ class CheckoutLicenseToAllUsers extends Command
}
$users = User::whereNull('deleted_at')->where('should_autoassign', '==', 0)->with('licenses')->get();
dd($users);
if ($users->count() > $license->getAvailSeatsCountAttribute()) {
$this->info('You do not have enough free seats to complete this task, so we will check out as many as we can. ');
}

View file

@ -380,7 +380,7 @@
<div class="form-group">
<div class="col-md-7 col-md-offset-3">
<label for="should_autoassign">
<input type="checkbox" value="1" name="should_autoassign" class="minimal" {{ (old('should_autoassign', $user->should_autoassign)) }} aria-label="should_autoassign">
<input type="checkbox" value="1" name="should_autoassign" class="minimal" {{ (old('should_autoassign', $user->should_autoassign)) == '1' ? ' checked="checked"' : '' }} aria-label="should_autoassign">
{{ trans('admin/users/general.auto_assign_label') }}
</label>