Changeset 24a616f for config


Ignore:
Timestamp:
10/13/21 15:44:57 (3 years ago)
Author:
Berat Kjufliju <kufliju@…>
Branches:
develop, master
Children:
120759b
Parents:
194a359
Message:

added documents crud, added last_seen_to_user, edited views

File:
1 edited

Legend:

Unmodified
Added
Removed
  • config/filesystems.php

    r194a359 r24a616f  
    3434            'driver' => 'local',
    3535            'root' => storage_path('app'),
     36            'permissions' => [
     37                'file' => [
     38                    'public' => 0664,
     39                    'private' => 0600,
     40                ],
     41                'dir' => [
     42                    'public' => 0775,
     43                    'private' => 0700,
     44                ],
     45                ],
     46        ],
     47
     48        'image-uploads' => [
     49            'driver' => 'local',
     50            'root'   => public_path() . '/assets/images/uploads',
    3651        ],
    3752
     
    4156            'url' => env('APP_URL').'/storage',
    4257            'visibility' => 'public',
     58        ],
     59
     60        'uploads' => [
     61            'driver' => 'local',
     62            'root'   => public_path() . '/uploads',
    4363        ],
    4464
Note: See TracChangeset for help on using the changeset viewer.