PHP Classes

File: src/config/uploader.php

Recommend this page to a friend!
  Classes of Moamen Eltouny   Laravel Upload File Manager   src/config/uploader.php   Download  
File: src/config/uploader.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: Laravel Upload File Manager
Manage the upload of public and private files
Author: By
Last change:
Date: 3 years ago
Size: 483 bytes
 

Contents

Class file image Download
<?php
return [
   
/**
     * Storage Disk (local, public, s3, ...)
     */
   
'disk' => 'public',

   
/**
     * Uploading Path
     */
   
'path' => '/',

   
/**
     * Route URL /..../hash
     */
   
'route' => 'file',

   
/**
     * Default Options
     */
   
'options' => [
       
       
// Prefix Hash
       
'prefix' => '',

       
// Visits Counting
       
'visitable' => false,

       
// Permitting only specific users
       
'private' => false,
    ]
];