PHP Classes

File: src/config/cms.php

Recommend this page to a friend!
  Classes of Shun Ram   Laravel Admin   src/config/cms.php   Download  
File: src/config/cms.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Admin
Manage users and the site content they publish
Author: By
Last change:
Date: 1 year ago
Size: 777 bytes
 

Contents

Class file image Download
<?php

return[

   
/*
     * main configurations
     */

   
'path' => 'cms',

   
/*
     * modules configuration
     */
   
'module' => [
       
/*
         * module path
         */
       
'path' => 'local',
       
/*
         * configuration file name
         */
       
'configuration' => 'module.json',
       
/*
         *core path
         */
       
'core_path' => 'core',
       
/*
         * local path
         */
       
'local_path' => 'local',
    ],
   
/*
     * Theme
     */
   
'theme' => [
       
'active' => 'theme1',
       
/*
         * fall back theme
         */
       
'fall_back' => 'theme1'
   
],
   
/*
     * skin
     */
   
'skin' => [
       
'path' => public_path('skin')
    ]
];