develop
Last change
on this file since 120759b was 120759b, checked in by Berat Kjufliju <kufliju@…>, 3 years ago |
added UserFactory, edited html, added delete to departments
|
-
Property mode
set to
100644
|
File size:
962 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | namespace Database\Factories;
|
---|
4 |
|
---|
5 | use App\Models\Department;
|
---|
6 | use Carbon\Carbon;
|
---|
7 | use Illuminate\Database\Eloquent\Factories\Factory;
|
---|
8 | use Illuminate\Support\Facades\Storage;
|
---|
9 |
|
---|
10 | class DepartmentFactory extends Factory
|
---|
11 | {
|
---|
12 | /**
|
---|
13 | * The name of the factory's corresponding model.
|
---|
14 | *
|
---|
15 | * @var string
|
---|
16 | */
|
---|
17 | protected $model = Department::class;
|
---|
18 |
|
---|
19 | /**
|
---|
20 | * Define the model's default state.
|
---|
21 | *
|
---|
22 | * @return array
|
---|
23 | */
|
---|
24 | public function definition()
|
---|
25 | {
|
---|
26 | $location = $this->faker->unique()->numberBetween(1, 99);
|
---|
27 | Storage::disk('local')->makeDirectory('Departments/' . $location);
|
---|
28 | return [
|
---|
29 | 'id' => $this->faker->unique()->randomNumber(),
|
---|
30 | 'name' => $this->faker->domainName(),
|
---|
31 | 'code' => $location,
|
---|
32 | 'location' => 'Departments/' . $location,
|
---|
33 | 'user_id' => $this->faker->numberBetween('1', '2'),
|
---|
34 | 'created_at' => Carbon::now()
|
---|
35 | ];
|
---|
36 | }
|
---|
37 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.