1 | <?php
|
---|
2 |
|
---|
3 | namespace Database\Factories;
|
---|
4 |
|
---|
5 | use App\Models\Department;
|
---|
6 | use App\Models\Folder;
|
---|
7 | use Carbon\Carbon;
|
---|
8 | use Faker\Provider\DateTime;
|
---|
9 | use Illuminate\Database\Eloquent\Factories\Factory;
|
---|
10 | use Illuminate\Support\Arr;
|
---|
11 | use Illuminate\Support\Facades\Storage;
|
---|
12 |
|
---|
13 | class FolderFactory extends Factory
|
---|
14 | {
|
---|
15 | /**
|
---|
16 | * The name of the factory's corresponding model.
|
---|
17 | *
|
---|
18 | * @var string
|
---|
19 | */
|
---|
20 | protected $model = Folder::class;
|
---|
21 |
|
---|
22 | /**
|
---|
23 | * Define the model's default state.
|
---|
24 | *
|
---|
25 | * @return array
|
---|
26 | */
|
---|
27 | public function definition()
|
---|
28 | {
|
---|
29 | $array = [5, 15, 25, 35, 45, 55, 65, 75, 85, 95, 105, 115, 125, 135, 145];
|
---|
30 |
|
---|
31 | $deptId = Arr::random($array);
|
---|
32 |
|
---|
33 | $deptCode = Department::find($deptId)->code;
|
---|
34 | $name = $this->faker->unique()->firstName();
|
---|
35 |
|
---|
36 | $location = 'Departments' . DIRECTORY_SEPARATOR . $deptCode . DIRECTORY_SEPARATOR . $name;
|
---|
37 | Storage::disk('uploads')->makeDirectory($location);
|
---|
38 |
|
---|
39 | return [
|
---|
40 | 'arch_id' => $deptCode . "/" . $this->faker->unique()->randomNumber(),
|
---|
41 | 'name' => $name,
|
---|
42 | 'note' => "This a note field",
|
---|
43 | 'location' => $location,
|
---|
44 | 'user_id' => 1,
|
---|
45 | 'department_id' => $deptId,
|
---|
46 | 'is_important' => $this->faker->boolean,
|
---|
47 | 'created_at' => now()
|
---|
48 | ];
|
---|
49 | }
|
---|
50 | }
|
---|