Changeset c6b84df for config


Ignore:
Timestamp:
10/21/21 23:45:59 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
develop, master
Children:
4b7e2d3
Parents:
6b95845
Message:

added fileTypes controller, notifications, excel export, edited views

Location:
config
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • config/app.php

    r6b95845 rc6b84df  
    162162        Illuminate\Validation\ValidationServiceProvider::class,
    163163        Illuminate\View\ViewServiceProvider::class,
     164        Maatwebsite\Excel\ExcelServiceProvider::class,
    164165
    165166        /*
     
    229230        'Validator' => Illuminate\Support\Facades\Validator::class,
    230231        'View' => Illuminate\Support\Facades\View::class,
     232        'Excel' => Maatwebsite\Excel\Facades\Excel::class,
    231233
    232234    ],
  • config/filesystems.php

    r6b95845 rc6b84df  
    3333        'local' => [
    3434            'driver' => 'local',
    35             'root' => storage_path('app'),
     35            'root' => public_path() . DIRECTORY_SEPARATOR . 'uploads',
    3636            'permissions' => [
    3737                'file' => [
     
    4848        'image-uploads' => [
    4949            'driver' => 'local',
    50             'root'   => public_path() . '/assets/images/uploads',
     50            'root'   => public_path() . DIRECTORY_SEPARATOR .'assets' . DIRECTORY_SEPARATOR . 'images' . DIRECTORY_SEPARATOR . 'uploads'
    5151        ],
    5252
Note: See TracChangeset for help on using the changeset viewer.