Ignore:
Timestamp:
10/15/21 00:21:44 (3 years ago)
Author:
Berat Kjufliju <kufliju@…>
Branches:
develop, master
Children:
d795fa6
Parents:
24a616f
Message:

added UserFactory, edited html, added delete to departments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • database/factories/DepartmentFactory.php

    r24a616f r120759b  
    44
    55use App\Models\Department;
     6use Carbon\Carbon;
    67use Illuminate\Database\Eloquent\Factories\Factory;
     8use Illuminate\Support\Facades\Storage;
    79
    810class DepartmentFactory extends Factory
     
    2224    public function definition()
    2325    {
     26        $location = $this->faker->unique()->numberBetween(1, 99);
     27        Storage::disk('local')->makeDirectory('Departments/' . $location);
    2428        return [
    25             'name' => $this->faker->name(),
    26             'code' => $this->faker->unique()->numerify(),
    27             'location' => $this->faker->unique()->name(),
    28             'user_id' => "1",
     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()
    2935        ];
    3036    }
Note: See TracChangeset for help on using the changeset viewer.