PHP Classes

File: config/themecli.php

Recommend this page to a friend!
  Classes of Hicri   Theme CLI   config/themecli.php   Download  
File: config/themecli.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Theme CLI
Change the frontend theme in a Laravel project
Author: By
Last change:
Date: 26 days ago
Size: 1,106 bytes
 

Contents

Class file image Download
<?php

return [

   
/*
    |--------------------------------------------------------------------------
    | Default active Theme
    |--------------------------------------------------------------------------
    |
    | Default active themename. like as
    | 'active' => 'themeone',
    |
    */
   
'active' => 'themeone',

   
/*
    |--------------------------------------------------------------------------
    | Themes path
    |--------------------------------------------------------------------------
    |
    | This path used for save the generated theme. This path also will added
    | automatically to list of scanned folders.
    |
    */
   
'theme_path' => resource_path('views'),

   
/*
    |--------------------------------------------------------------------------
    | Themes folder structure
    |--------------------------------------------------------------------------
    |
    | Here you may update theme folder structure.
    |
    */
   
'folders' => [
       
'views' => 'views',
       
'css' => 'assets/css',
       
'layouts' => 'views/layouts',
    ],


];