mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-13 06:47:46 -08:00
removes data dump
This commit is contained in:
parent
90828e3a87
commit
8a0517fb5d
|
@ -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. ');
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue