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/DocumentFactory.php

    re6c1f87 rb9c4a92  
    2626    {
    2727
    28         $deptID = $this->faker->numberBetween('1', '25');
     28        $deptID = "1";
     29        $name = $this->faker->unique()->firstName();
     30        Storage::disk('local')->makeDirectory('Departments' . DIRECTORY_SEPARATOR . $deptID . DIRECTORY_SEPARATOR . $name);
    2931
    3032        return [
    3133            'arch_id' => $deptID . "/" . $this->faker->unique()->randomNumber(),
    32             'name' => $this->faker->unique()->firstName(),
     34            'name' => $name,
    3335            'description' => $this->faker->realText(),
    3436            'user_id' => $this->faker->numberBetween('1', '2'),
Note: See TracChangeset for help on using the changeset viewer.