Changeset 94f05dc for config


Ignore:
Timestamp:
10/24/21 23:23:54 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
develop, master
Children:
df6e9ec
Parents:
fa80fbe
Message:

bug fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • config/filesystems.php

    rfa80fbe r94f05dc  
    3333        'local' => [
    3434            'driver' => 'local',
    35             'root' => public_path() . DIRECTORY_SEPARATOR . 'uploads',
     35            'root' => storage_path() . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'public',
    3636            'permissions' => [
    3737                'file' => [
     
    5353        'public' => [
    5454            'driver' => 'local',
    55             'root' => storage_path('app/public'),
     55            'root' => storage_path() . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'public',
    5656            'url' => env('APP_URL').'/storage',
    5757            'visibility' => 'public',
     
    6060        'uploads' => [
    6161            'driver' => 'local',
    62             'root'   => public_path() . '/uploads',
     62            'root'   => storage_path() . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'public',
    6363        ],
    6464
Note: See TracChangeset for help on using the changeset viewer.