Changeset 0a1fb54 for database/factories
- Timestamp:
- 11/23/21 22:01:52 (3 years ago)
- Branches:
- master
- Children:
- dbc5976
- Parents:
- 4d73966
- Location:
- database/factories
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
database/factories/DepartmentFactory.php
r4d73966 r0a1fb54 28 28 { 29 29 $location = $this->faker->unique()->numberBetween(1, 10); 30 Storage::disk(' uploads')->makeDirectory('Departments/' . $location);30 Storage::disk('local')->makeDirectory('Departments/' . $location); 31 31 return [ 32 32 'name' => "Department" . ' ' . $this->faker->unique()->firstName(), -
database/factories/FolderFactory.php
r4d73966 r0a1fb54 27 27 public function definition() 28 28 { 29 $inputArray = [5, 15, 25, 35, 45, 55, 65, 75, 85, 95];30 $deptId = Arr::random($inputArray);29 //$inputArray = [5, 15, 25, 35, 45, 55, 65, 75, 85, 95]; 30 //$deptId = Arr::random($inputArray); 31 31 32 //$deptId = $this->faker->numberBetween(1, 10);32 $deptId = $this->faker->numberBetween(1, 10); 33 33 34 34 $deptCode = Department::find($deptId)->code; … … 37 37 38 38 $location = 'Departments' . DIRECTORY_SEPARATOR . $deptCode . DIRECTORY_SEPARATOR . $name; 39 Storage::disk(' uploads')->makeDirectory($location);39 Storage::disk('local')->makeDirectory($location); 40 40 41 41 return [
Note:
See TracChangeset
for help on using the changeset viewer.