source: database/factories/DepartmentFactory.php@ e6c1f87

develop
Last change on this file since e6c1f87 was e6c1f87, checked in by beratkjufliju <kufliju@…>, 3 years ago

added pagination, is_important

  • Property mode set to 100644
File size: 952 bytes
RevLine 
[24a616f]1<?php
2
3namespace Database\Factories;
4
5use App\Models\Department;
[120759b]6use Carbon\Carbon;
[24a616f]7use Illuminate\Database\Eloquent\Factories\Factory;
[120759b]8use Illuminate\Support\Facades\Storage;
[24a616f]9
10class 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 {
[e6c1f87]26 $location = $this->faker->unique()->numberBetween(1, 25);
[120759b]27 Storage::disk('local')->makeDirectory('Departments/' . $location);
[24a616f]28 return [
[e6c1f87]29 'name' => $this->faker->firstName() . " department",
[120759b]30 'code' => $location,
[e6c1f87]31 'location' => Storage::disk('local')->path('') . 'Departments/' . $location,
[120759b]32 'user_id' => $this->faker->numberBetween('1', '2'),
33 'created_at' => Carbon::now()
[24a616f]34 ];
35 }
36}
Note: See TracBrowser for help on using the repository browser.