Ignore:
Timestamp:
10/18/21 23:00:23 (3 years ago)
Author:
Berat Kjufliju <kufliju@…>
Branches:
develop, master
Children:
ea7b12a
Parents:
e6c1f87
Message:

edited file upload, seeding and departments controller

File:
1 edited

Legend:

Unmodified
Added
Removed
  • database/factories/DepartmentFactory.php

    re6c1f87 rb9c4a92  
    2424    public function definition()
    2525    {
    26         $location = $this->faker->unique()->numberBetween(1, 25);
     26        $location = $this->faker->randomNumber('1', '1');
    2727        Storage::disk('local')->makeDirectory('Departments/' . $location);
    2828        return [
    29             'name' => $this->faker->firstName() . " department",
     29            'name' => "Department" . $this->faker->unique()->firstName(),
    3030            'code' => $location,
    31             'location' => Storage::disk('local')->path('') . 'Departments/' . $location,
     31            'location' => Storage::disk('local')->path('') . 'Departments' . DIRECTORY_SEPARATOR . $location,
    3232            'user_id' => $this->faker->numberBetween('1', '2'),
    3333            'created_at' => Carbon::now()
Note: See TracChangeset for help on using the changeset viewer.