ok

Mini Shell

Direktori : /home2/selectio/www/billingsoftwarenew/core/app/Constants/
Upload File :
Current File : //home2/selectio/www/billingsoftwarenew/core/app/Constants/FileInfo.php

<?php

namespace App\Constants;

class FileInfo {
    /*
    |--------------------------------------------------------------------------
    | File Information
    |--------------------------------------------------------------------------
    |
    | This trait basically contain the path of files and size of images.
    | All information are stored as an array. Developer will be able to access
    | this info as method and property using FileManager class.
    |
    */

    public function fileInfo() {
        $data['withdrawVerify'] = [
            'path' => 'assets/images/verify/withdraw'
        ];
        $data['depositVerify'] = [
            'path'      => 'assets/images/verify/deposit'
        ];
        $data['verify'] = [
            'path'      => 'assets/verify'
        ];
        $data['default'] = [
            'path'      => 'assets/images/default.png',
        ];
        $data['withdrawMethod'] = [
            'path'      => 'assets/images/withdraw/method',
            'size'      => '800x800',
        ];
        $data['ticket'] = [
            'path'      => 'assets/support',
        ];

        $data['logoIcon'] = [
            'path'      => 'assets/images/logoIcon',
        ];
        $data['favicon'] = [
            'size'      => '128x128',
        ];
        $data['extensions'] = [
            'path'      => 'assets/images/extensions',
            'size'      => '36x36',
        ];
        $data['seo'] = [
            'path'      => 'assets/images/seo',
            'size'      => '1180x600',
        ];
        $data['userProfile'] = [
            'path'      => 'assets/images/user/profile',
            'size'      => '350x300',
        ];
        $data['adminProfile'] = [
            'path'      => 'assets/admin/images/profile',
            'size'      => '400x400',
        ];
        $data['beneficiaryTransfer'] = [
            'path' => 'assets/images/user/transfer/beneficiary'
        ];
        $data['branchStaff'] = [
            'path' => 'assets/branch/staff/resume'
        ];
        $data['branchStaffProfile'] = [
            'path'      => 'assets/branch/staff/images/profile',
            'size'      => '400x400',
        ];
        return $data;
    }
}

Zerion Mini Shell 1.0