mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Merge branch 'develop'
This commit is contained in:
commit
508576544b
|
@ -31,13 +31,6 @@ $factory->state(App\Models\License::class, 'photoshop', function ($faker) {
|
||||||
'seats' => 10,
|
'seats' => 10,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
for ($x = 0; $x < $data['seats']; $x++) {
|
|
||||||
$seat = new App\Models\LicenseSeat;
|
|
||||||
$seat->license_id = 1;
|
|
||||||
$seat->create();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -52,11 +45,6 @@ $factory->state(App\Models\License::class, 'acrobat', function ($faker) {
|
||||||
'seats' => 10,
|
'seats' => 10,
|
||||||
];
|
];
|
||||||
|
|
||||||
for ($x = 0; $x < $data['seats']; $x++) {
|
|
||||||
$seat = new App\Models\LicenseSeat;
|
|
||||||
$seat->license_id = 2;
|
|
||||||
$seat->create();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
});
|
});
|
||||||
|
@ -70,11 +58,6 @@ $factory->state(App\Models\License::class, 'indesign', function ($faker) {
|
||||||
'seats' => 10,
|
'seats' => 10,
|
||||||
];
|
];
|
||||||
|
|
||||||
for ($x = 0; $x < $data['seats']; $x++) {
|
|
||||||
$seat = new App\Models\LicenseSeat;
|
|
||||||
$seat->license_id = 3;
|
|
||||||
$seat->create();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
});
|
});
|
||||||
|
@ -89,11 +72,6 @@ $factory->state(App\Models\License::class, 'office', function ($faker) {
|
||||||
'seats' => 20,
|
'seats' => 20,
|
||||||
];
|
];
|
||||||
|
|
||||||
for ($x = 0; $x < $data['seats']; $x++) {
|
|
||||||
$seat = new App\Models\LicenseSeat;
|
|
||||||
$seat->license_id = 4;
|
|
||||||
$seat->create();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
});
|
});
|
||||||
|
|
|
@ -167,7 +167,7 @@
|
||||||
'settings' => 'Settings',
|
'settings' => 'Settings',
|
||||||
'sign_in' => 'Sign in',
|
'sign_in' => 'Sign in',
|
||||||
'signature' => 'Signature',
|
'signature' => 'Signature',
|
||||||
'some_features_disabled' => 'DEMO MODE: Some features are disabled for this installation, and the data in this system will reset daily.',
|
'some_features_disabled' => 'DEMO MODE: Some features are disabled for this installation and the data in this system will reset daily.',
|
||||||
'site_name' => 'Site Name',
|
'site_name' => 'Site Name',
|
||||||
'state' => 'State',
|
'state' => 'State',
|
||||||
'status_labels' => 'Status Labels',
|
'status_labels' => 'Status Labels',
|
||||||
|
|
Loading…
Reference in a new issue