Changeset b9c4a92 for database/factories
- Timestamp:
- 10/18/21 23:00:23 (3 years ago)
- Branches:
- develop, master
- Children:
- ea7b12a
- Parents:
- e6c1f87
- Location:
- database/factories
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
database/factories/DepartmentFactory.php
re6c1f87 rb9c4a92 24 24 public function definition() 25 25 { 26 $location = $this->faker-> unique()->numberBetween(1, 25);26 $location = $this->faker->randomNumber('1', '1'); 27 27 Storage::disk('local')->makeDirectory('Departments/' . $location); 28 28 return [ 29 'name' => $this->faker->firstName() . " department",29 'name' => "Department" . $this->faker->unique()->firstName(), 30 30 'code' => $location, 31 'location' => Storage::disk('local')->path('') . 'Departments /'. $location,31 'location' => Storage::disk('local')->path('') . 'Departments' . DIRECTORY_SEPARATOR . $location, 32 32 'user_id' => $this->faker->numberBetween('1', '2'), 33 33 'created_at' => Carbon::now() -
database/factories/DocumentFactory.php
re6c1f87 rb9c4a92 26 26 { 27 27 28 $deptID = $this->faker->numberBetween('1', '25'); 28 $deptID = "1"; 29 $name = $this->faker->unique()->firstName(); 30 Storage::disk('local')->makeDirectory('Departments' . DIRECTORY_SEPARATOR . $deptID . DIRECTORY_SEPARATOR . $name); 29 31 30 32 return [ 31 33 'arch_id' => $deptID . "/" . $this->faker->unique()->randomNumber(), 32 'name' => $ this->faker->unique()->firstName(),34 'name' => $name, 33 35 'description' => $this->faker->realText(), 34 36 'user_id' => $this->faker->numberBetween('1', '2'),
Note:
See TracChangeset
for help on using the changeset viewer.