PHP Classes

Laravel Admin: Manage users and the site content they publish

Recommend this page to a friend!
  Info   View files Documentation   View files View files (629)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2023-05-09 (10 months ago) RSS 2.0 feedNot yet rated by the usersTotal: 45 This week: 1All time: 10,746 This week: 560Up
Version License PHP version Categories
laravel-admin 1.0.0Custom (specified...5PHP 5, Content management, Applications
Description 

Author

This package can manage users and the site content they publish.

It provides an application that uses the Laravel framework to implement a system to publish the content of registered users on a Web site.

Currently the package can:

- Manage registered users, user roles and permissions

- Manage user publications of pages

- Display content pages customizable with themes

- Manage navigation menus

- Can be extended with additional plugins

Picture of Shun Ram
  Performance   Level  
Name: Shun Ram <contact>
Classes: 1 package by
Country: India India
Age: ???
All time rank: 4493303 in India India
Week rank: 416 Up25 in India India Up

Documentation

Content Management System using laravel framework

Features:

  1. Cms
  2. Admin interface
  3. Module based app
  4. Theme based
  5. Plugins
  6. Roles and Permissions
  7. Menu creation
  8. User Management
  9. Page Creation
  10. Mail configurations
  11. Site Configuration,etc </ol>

Version

| Laravel Version | Version | | --------------- | ---------- | | 5.4 | 1.0 to 2.0 | | 5.5 | >=2.1 | | 5.6 | >=2.1 | | 5.7 | >=2.1 | | 5.8 | >=2.2 | | 6 | >=2.3 | | 7 | >=2.3 | | 8 | >=2.4 |

Change Logs

Version v2.4

  1. Data table version update
  2. Seed command bug fix

Version v2.2

  1. Data table version update
  2. Bug fix

Version v2.1.1

  1. CRUD Module added easy crud module with single command
  • ##### `php artisan make:cms-module {module-name} {--crud}`
    eg:
    php artisan make:cms-module test --crud
    
  1. CRUD view create crud views using artisan command
  • ##### `php artisan make:cms-crudviews`

    it will create 2 file inside resources/views/admin

    `index.blade.php` `edit.blade.php`

Install:

composer require phpworkers/cms

Requiremments:

  1. Laravel 5.4 or later
  2. laravelcollective/html: ~5.0
  3. yajra/laravel-datatables-oracle: ~9.0
  4. unisharp/laravel-filemanager: ^1.8

After Install:

// Add following Lines to `config/app.php` providers array
//html
Collective\Html\HtmlServiceProvider::class,
//datatable
Yajra\DataTables\DatatablesServiceProvider::class,
Ramesh\Cms\CmsServiceProvider::class,

// Add Following Lines to `config/app.php`  aliases array
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
'Cms' => Ramesh\Cms\Facades\Cms::class,

Then Run Following commands

# Publishing css,js,config files,core modules,theme,etc
php artisan vendor:publish

# Publishing filemanager resources
php artisan vendor:publish --provider="UniSharp\LaravelFilemanager\LaravelFilemanagerServiceProvider"

composer dump-autoload

# Migrate our tables
php artisan cms-migrate

# Seeding
php artisan db:cms-seed

#register modules to table
php artisan update:cms-module

#register plugins
php artisan update:cms-plugins

#regiser menus
php artisan update:cms-menu

Open your route/web.php and remove rollowing lines(route)

Route::get('/', function () {
    return view('welcome');
});

then run

php artisan serve

and open localhost:8000/administrator

Username : admin

Password : admin123

Documents

  • Folder Structure
  • Theme
  • What is Module?
  • Core
  • Local
  • List of core modules
  • Create Own module
  • Artisian Commands
  • Skin
  • Helper
  • Core Helper functions
  • Plugins

Folder Structure

Main path

  cms (main)
    |
    |__core
    |  |
    |  |__core modules
    |
    |__local
        |
        |__themes
            |
            |__local modules

1.cms : cms path is the main path of our app,that contain

      1.1 : core
      1.2 : local

    1.1 : core : core path is core module path ,that contain number of core modules,avoid to write core modules

        1.1.1 : core modules -> core path contain number of core modules

    1.2 : local : local path contain theme,we can create multiple theme

      1.2.1 : local modules -> theme path contain number of local module(user create module)

Skin path

  public
    public (main)
    |
    |_skin
        |
        |__theme name
                |
                |__css,js,vendor,fonts,etc

    1 : public ->public folder is default folder in laravel

        1.1 : skin -> skin folder is our assets folder

        1.1.1 : theme name -> folder name is theme name , that contain css, fonts ,js,etc

Theme

Theme is main part of our package,we can create multiple theme,our package is theme and moduler based,all theme is placed on cms->local folder <br> Default theme is theme1

Create Theme

Just create new folder inside of cms->local

Change theme

If you want to change theme?its very easy <br> Go to adminpanel->site configuration->change theme <br>

Modules

Module is is a mechanism to group controller, views, modules, etc that are related, otherword module is pice of code or package of laravel

Core

core is folder,that contain core modules (pre-defind) Module<br>

> Note: Don't change any code of core module's

Local

local folder contain local module,which is created by user

Create own module

php artisan make:cms-module {module-name}

eg :

php artisan make:cms-module helloworld

<br>helloworld module is created under current theme folder <br> then register our module to database for feature use <br> <b>php artisan update:cms-module</b> <br />

<h5>Where is the entry point (provider) of the module?</h5> open provider folder under cms/local/{module} <br /> that provider is same as laravel provider so boot and register method is important and additionaly we have some functions <br /> <ol> <li>

registerRoot   -> registerRoot method is used to registreing our custom module routes

</li> <li>

registerAdminRoot -> registerAdminRoot method is used to registering our custom module admin routes

</li> <li>

registerViews -> registerViews method is used to registering our custom module views

</li> </ol> if you want to enable this method,just uncommands calls inside register method of your provider thats all :) ,lets see files in modules,<br> <ol> <li>module.json ->file</li> <li>composer.json ->file</li> <li>menu.xml -> file</li> <li>routes.php -> file</li> <li>adminroutes -> file</li> <li>Controller -> folder</li> <li>Database ->folder</li> <li>Models -> folder</li> <li>config -> folder</li> <li>resourcesc-> folder</li> <li>Events -> folder</li> <li>Listeners -> folder</li> <li>Mail -> folder</li> <li>Middleware -> folder</li> <li>helpers ->folder</li> </ol>

module.json

{
    "name": "helloworld",
    "version": "0.0.1",
    "type": "local",
    "providers": ["Providers\\HelloworldServiceProvider"]
}

<table> <thead>

<tr>
  <th>
    Parameter
  </th>
  <th>
    Data type
  </th>
  <th>
    Use
  </th>
  <th>
    is optional?
  </th>
</tr>

</thead> <tbody>

<tr>
  <td>
    name
  </td>
  <td>
    string 
  </td>
  <td>
    name of the module
  </td>
  <td>
    NO
  </td>
</tr>
<tr>
  <td>
    version
  </td>
  <td>
    string 
  </td>
  <td>
    version of the module
  </td>
  <td>
    NO
  </td>
</tr>
<tr>
  <td>
    type
  </td>
  <td>
    string (core/local) 
  </td>
  <td>
    type of the module
  </td>
  <td>
    NO
  </td>
</tr>
<tr>
  <td>
    providers
  </td>
  <td>
    Array 
  </td>
  <td>
    Provider of this module,provider is register point of our module
  </td>
  <td>
    NO
  </td>
</tr>
<tr>
  <td>
    plugins
  </td>
  <td>
    string (relative path of plugin)
  </td>
  <td>
    plugin path,that used to defind plugin
  </td>
  <td>
    YES
  </td>
</tr>
<tr>
  <td>
    helpers
  </td>
  <td>
    object (relative path of helpers)
  </td>
  <td>
    helpers path,that used to defind helpers,helpers contain common functions,we can use any where
    <br>
    eg:<br>
    <code>
      "helpers" : {
          "HelperName1":"cms\\core\\blog\\helpers\\Blog",
          "HelperName2":"some path",
          ....
        }
    </code>
  </td>
  <td>
    YES
  </td>
</tr>
<tr>
  <td>
    search
  </td>
  <td>
    object (relative path of search class)
  </td>
  <td>
    search path,that used to defind search helper,search class functions, this is used to make our module is searchable
    <br>
    eg:<br>
    <code>
      "helpers" : {
          "HelperName1":"cms\\core\\blog\\helpers\\Blog",
          "HelperName2":"some path",
          ....
        }
    </code>
  </td>
  <td>
    YES
  </td>
</tr>
<tr>
  <td>configuration</td>
  <td>string (view file path of configuration)</td>
  <td>configuration is used to view or edit module configuration
    eg:<br />
    <code>
      "configuration" : "user::admin.configuration.configuration",
    </code>
    <br />
    Above example is taken from user module,that mean user configuration is place on cms/core/user/admin/configuration/configuraion.blade.php
  </td>
  <td>
    YES
  </td>
</tr>
<tr>
  <td>configuration_data</td>
  <td>string (configuration data function path)</td>
  <td>configuration data is get module configuration from function,its define function name,this function should return module configuration<br />
    eg:<br />
    <code>
      "configuration_data" : "\\cms\\core\\user\\Controllers\\UserController@getConfigurationData"
    </code>
    <br />
    Above example is taken from user module, <br />
    that mean user configuration function is place on <b>cms/core/user/controller/UserController.php <b>and function name is <b>getConfigurationData</b>
    <br />
    <code>
      /* <br />
       * configurations option<br />
       */<br />
      public function getConfigurationData()<br />
      {<br />
          $group = UserGroupModel::where('status',1)->where('id','!=',1)->orderBy('group','Asc')->pluck("group","id");<br />
          return ['user_group'=>$group];<br />
      }<br />
    </code>
    <br />
    Above function return available user groups
  </td> 
  <td>
    YES
  </td>
</tr>

</tbody> </table> <h4>composer.json</h4> <code> { "name": "cms/user", "description": "", "authors": [

{
  "name": "Ramesh",
  "email": "shunramit@gmail.com"
}

], "autoload": {

"psr-4": {     
}

} } </code><br /> composer.json file is contain detail about module and author and that contain autoload <br /> just leave it this one, we will add autoload feature in later <br /> <h4>menu.xml</h4> menu.xml is used for add menu and menu group in adminpanel like joomla menu <br /> <pre class='brush: xml;'> &lt; ?xml version="1.0" encoding="utf-8"? &gt; &lt;menus>

 &lt;group name="General" order="0">
     &lt;menugroup name="Users" icon="fa fa-user" order="0">
         &lt;menu name="View Users" route="user.index" />
         &lt;menu name="Add User" route="user.create" />
      &lt;/menugroup>
  &lt;/group>

&lt;/menus> </pre> <table> <thead>

<tr>
  <th>
    Tag
  </th>
  <th>
    Use
  </th>
  <th>
    Parent
  </th>
  <th>
    Attributes
  </th>
</tr>

</thead> <tbody>

<tr>
  <td>
     <code>&lt;menus></code>
  </td>
  <td>
    menus tag is main tag of the menu.xml,that is bootstarp of menu.xml
  </td>
  <td>
    NULL
  </td>
  <td>
    NULL
  </td>
</tr>
<tr>
  <td>
     <code>&lt;group></code>
  </td>
  <td>
    group tag is defind menu type,default type is general,you can create own group using name attribute
  </td>
  <td>
    <code>&lt;menus></code>
  </td>
  <td>
    <ul>
      <li>name <br />
        name attribute is defind name of the menu type<br />
        name is mandtory attribute
      </li>
      <li>
        order <br />
        order attribute defind order of the menutype
      </li>
    </ul>
  </td>
</tr>
<tr>
  <td>
     <code>&lt;menugroup></code>
  </td>
  <td>
    menugroup tag is defind menu group for example user module menus is placed under user menugroup
    <i>Menugroup is optional</i>
  </td>
  <td>
    <code>&lt;menus></code>
  </td>
  <td>
    <ul>
      <li>name <br />
        name attribute is defind name of the menu group<br />
        name is mandtory attribute
      </li>
      <li>
        order <br />
        order attribute defind order of the menu group
      </li>
    </ul>
  </td>
</tr>
<tr>
  <td>
     <code>&lt;menu></code>
  </td>
  <td>
    menu tag is used to give a link otherword its just clickable link
  </td>
  <td>
    <code>&lt;menus> OR &lt;menugroup> </code>
  </td>
  <td>
    <ul>
      <li>name <br />
        name attribute is defind name of the menu group<br />
        name is mandtory attribute
      </li>
      <li>icon <br />
        icon attribute is used to add font awsome icon<br />
      </li>
      <li>route <br />
        route attribute is accept named route<br />
        <i>if you want add url?just use <b>is_url </b> attribute <br />
          eg : <br />
          <code>
            &lt;menu name="Module Configurations" route="/administrator/configurations/module/1" is_url="1"/>
          </code>
        </i>
      </li>
      <li>is_url <br />
        is_url attribute is used to identify given menu route is url or named route,if is_url="1" means given route is url otherwise given route is named roue
      </li>
      <li>
        order <br />
        order attribute defind order of the menu group
      </li>
    </ul>
  </td>
</tr>

</tbody> </table> <h4> routes.php </h4> <p>routes.php file contain routes of the frontend app exclude admin routes<br /> don't have routes.php?,just create it.. :) <br /> if you don't like file name?<br /> we have good solution for you <br /> go to your module main provider and find registerRoot function then change it <br /> </p> <h4>adminroutes.php</h4> <p> adminroutes.php file contain routes of the admin <br /> this file is include admin middlewares and admin route group with administrator prefix<br /> if you dont want admin middleware of current module <br /> go to your module provider and find registerAdminRoot method and remove middleware </p> <h4>Folders of the modules</h4> <table> <thead>

<tr>
  <th>
    Name
  </th>
  <th>
    Use
  </th>
  <th>
    Sub-folders
  </th>
</tr>

</thead> <tbody>

<tr>
  <td>
    Controller
  </td>
  <td>
    controller folder contain controllers
  </td>
  <td>
    -
  </td>
</tr>
<tr>
  <td>
    Database
  </td>
  <td>
    Database folder contain migrations and seeds
  </td>
  <td>
    Migration  -> that contain migrations
    Seeds  -> that contain seeds
  </td>
</tr>
<tr>
  <td>Models</td>
  <td>Models folder contain Models class</td>
  <td>-</td>
</tr>
<tr>
  <td>helpers</td>
  <td>helpers folder contain helpers class</td>
  <td>-</td>
</tr>
<tr>
  <td>providers</td>
  <td>providers folder contain providers class</td>
  <td>-</td>
</tr>
<tr>
  <td>resources</td>
  <td>resources folder contain assets and views</td>
  <td>views,assets</td>
</tr>
<tr>
  <td>Mail</td>
  <td>Mail folder contain Mail class</td>
  <td>-</td>
</tr>
<tr>
  <td>Events</td>
  <td>Events folder contain Events class</td>
  <td>-</td>
</tr>
<tr>
  <td>Listeners</td>
  <td>Listeners folder contain Listeners class</td>
  <td>-</td>
</tr>
<tr>
  <td>Middleware</td>
  <td>Middleware folder contain Middleware class</td>
  <td>-</td>
</tr>
<tr>
  <td>Console</td>
  <td>Console folder contain artisan comands</td>
  <td>Commands</td>
</tr> 
<tr>
  <td>config </td>
  <td>config folder contain config array like roles (deprecated) and mailer configurations</td>
  <td>-</td>
</tr>

</tbody> </table> <h3>Artisian Commands</h3> <p>we provide more artisan commands</p> <p>imagin we have more than 30 artisan commands,its not remebarable,but you know default laravel commands so we have some idea,we added one common word for all laravel commands,thats it,now easily you can remember our commands</p> eg: <br /> default command for creating laravel controller is <br /> <b>php artisan make:controller {controller-name} </b> <br /> our comand is <br /> <b>php artisan make:<u>cms-</u>controller {controller-name} <u>{module-name}</u></b> <br /> deafult migrate command is <br> <b>php artisan migrate</b> our migrate command is <br> <b>php artisan cms-migrate</b> <br> and one more we have our own commands,its not high count,but very usefull <h4>List of our commands</h4> <ol> <li>

<b>php artisan make:cms-module {module-name}</b>
<br />
this is used to make new module

</li> <li>

<b>php artisan update:cms-menu</b> <br>
this command is used to update or register menus

</li> </ol> <h4>create new artisan commands for your module</h4> if you want create new comand <br /> <b>php artisan make:cms-command {command-name} {module-name}</b> <br> file is created under console/commands folder inside of your module <br> <h4>how to enable own commands?</h4> <br> open your module provider then create commands array <br> eg : <br /> <pre>

/*
 * artisan command
 */
protected $commands = [
    'cms\core\{module-name}\Console\Commands\{Commandclass}'
];

</pre> please replace module-name and commandclass like <pre>

/*
 * artisan command
 */
protected $commands = [
    'cms\core\menu\Console\Commands\AdminMenu'
];

</pre> <br> then create method <br> <pre>

/*
 * register commands
 */
protected function registerCommand()
{
    $this->commands($this->commands);
}

</pre> then add following line to register method <pre> $this->registerCommand(); </pre> eg: <pre> public function register() {

  $this->registerViews();
  $this->registerRoot();
  $this->registerAdminRoot();
  $this->registerCommand();

} </pre>

<h1>What is next?</h1> now i am working on moving this package to react,V3.O will release soon


  Files folder image Files  
File Role Description
Files folder image.github (1 directory)
Files folder imagedocs (2 files)
Files folder imagesrc (2 files, 8 directories)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  .github  
File Role Description
Files folder imageISSUE_TEMPLATE (3 files)

  Files folder image Files  /  .github  /  ISSUE_TEMPLATE  
File Role Description
  Accessible without login Plain text file bug_report.md Data Auxiliary data
  Accessible without login Plain text file custom.md Data Auxiliary data
  Accessible without login Plain text file feature_request.md Data Auxiliary data

  Files folder image Files  /  docs  
File Role Description
  Accessible without login HTML file index.html Doc. Documentation
  Accessible without login Plain text file _config.yml Data Auxiliary data

  Files folder image Files  /  src  
File Role Description
Files folder imageCommands (18 files)
Files folder imageconfig (2 files)
Files folder imageController (3 files)
Files folder imageExceptions (1 file)
Files folder imageFacades (1 file)
Files folder imageGenerators (1 file)
Files folder imageproviders (2 files)
Files folder imagestubs (3 directories)
  Plain text file CmsServiceProvider.php Class Class source
  Accessible without login Plain text file Helper.php Aux. Auxiliary script

  Files folder image Files  /  src  /  Commands  
File Role Description
  Plain text file CmsPublish.php Class Class source
  Plain text file MakeCommand.php Class Class source
  Plain text file MakeController.php Class Class source
  Plain text file MakeCrudRoutes.php Class Class source
  Plain text file MakeCrudViews.php Class Class source
  Plain text file MakeEvent.php Class Class source
  Plain text file MakeJob.php Class Class source
  Plain text file MakeListener.php Class Class source
  Plain text file MakeMail.php Class Class source
  Plain text file MakeMiddleware.php Class Class source
  Plain text file MakeMigration.php Class Class source
  Plain text file MakeModel.php Class Class source
  Plain text file MakeNotification.php Class Class source
  Plain text file MakeProvider.php Class Class source
  Plain text file MakeSeeder.php Class Class source
  Plain text file Migrate.php Class Class source
  Plain text file ModuleCommand.php Class Class source
  Plain text file Seed.php Class Class source

  Files folder image Files  /  src  /  config  
File Role Description
  Accessible without login Plain text file cms.php Aux. Auxiliary script
  Plain text file lfm.php Class Class source

  Files folder image Files  /  src  /  Controller  
File Role Description
  Plain text file CmsController.php Class Class source
  Plain text file ModuleController.php Class Class source
  Plain text file ModulesController.php Class Class source

  Files folder image Files  /  src  /  Exceptions  
File Role Description
  Plain text file FileAlreadyExistException.php Class Class source

  Files folder image Files  /  src  /  Facades  
File Role Description
  Plain text file Cms.php Class Class source

  Files folder image Files  /  src  /  Generators  
File Role Description
  Plain text file FileGenerator.php Class Class source

  Files folder image Files  /  src  /  providers  
File Role Description
  Plain text file CommandProvider.php Class Class source
  Plain text file ModuleServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  
File Role Description
Files folder imagecms (2 directories)
Files folder imagemodule (3 files, 12 directories)
Files folder imageskin (1 file, 1 directory)

  Files folder image Files  /  src  /  stubs  /  cms  
File Role Description
Files folder imagecore (14 directories)
Files folder imagelocal (1 directory)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  
File Role Description
Files folder imageadmin (5 files, 4 directories)
Files folder imageblog (4 files, 7 directories)
Files folder imageconfigurations (4 files, 6 directories)
Files folder imagefeedback (5 files, 6 directories)
Files folder imagegate (4 files, 6 directories)
Files folder imagelayout (3 files, 5 directories)
Files folder imagemenu (5 files, 8 directories)
Files folder imagemodule (2 files, 5 directories)
Files folder imagenewsletter (5 files, 8 directories)
Files folder imagepage (5 files, 7 directories)
Files folder imageplugins (4 files, 8 directories)
Files folder imagesearch (3 files, 4 directories)
Files folder imageuser (5 files, 11 directories)
Files folder imageusergroup (4 files, 5 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  admin  
File Role Description
Files folder imageControllers (1 file)
Files folder imageMiddleware (1 file)
Files folder imageproviders (1 file)
Files folder imageresources (1 directory)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data
  Accessible without login Plain text file routes.php Example Example script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  admin  /  Controllers  
File Role Description
  Plain text file AdminAuth.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  admin  /  Middleware  
File Role Description
  Plain text file AdminAuth.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  admin  /  providers  
File Role Description
  Plain text file AdminServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  admin  /  resources  
File Role Description
Files folder imageviews (3 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  admin  /  resources  /  views  
File Role Description
  Accessible without login Plain text file header.blade.php Aux. Auxiliary script
  Accessible without login Plain text file login.blade.php Aux. Auxiliary script
  Accessible without login Plain text file main.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  
File Role Description
Files folder imageControllers (2 files)
Files folder imageDatabase (1 directory)
Files folder imagehelpers (1 file)
Files folder imageModels (2 files)
Files folder imageproviders (1 file)
Files folder imageresources (1 directory)
Files folder imagesearch (1 file)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  Controllers  
File Role Description
  Plain text file BlogCategoryController.php Class Class source
  Plain text file BlogController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  Database  
File Role Description
Files folder imageMigration (2 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  Database  /  Migration  
File Role Description
  Plain text file 2017_09_21_1505962...e_blog_category.php Class Class source
  Plain text file 2017_09_21_1505962812_create_blog.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  helpers  
File Role Description
  Plain text file Blog.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  Models  
File Role Description
  Plain text file BlogCategoryModel.php Class Class source
  Plain text file BlogModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  providers  
File Role Description
  Plain text file BlogServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  resources  
File Role Description
Files folder imageviews (2 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  resources  /  views  
File Role Description
Files folder imageadmin (2 files, 1 directory)
Files folder imagesite (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  resources  /  views  /  admin  
File Role Description
Files folder imagecategory (2 files)
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  resources  /  views  /  admin  /  category  
File Role Description
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  resources  /  views  /  site  
File Role Description
  Accessible without login Plain text file search.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  blog  /  search  
File Role Description
  Plain text file Blog.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  configurations  
File Role Description
Files folder imageControllers (1 file)
Files folder imageDatabase (1 directory)
Files folder imagehelpers (1 file)
Files folder imageModels (1 file)
Files folder imageproviders (1 file)
Files folder imageresources (1 directory)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  configurations  /  Controllers  
File Role Description
  Plain text file ConfigurationsController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  configurations  /  Database  
File Role Description
Files folder imageMigration (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  configurations  /  Database  /  Migration  
File Role Description
  Plain text file 2017_09_19_1505798...gurations_table.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  configurations  /  helpers  
File Role Description
  Plain text file Configurations.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  configurations  /  Models  
File Role Description
  Plain text file ConfigurationModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  configurations  /  providers  
File Role Description
  Plain text file ConfigurationsServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  configurations  /  resources  
File Role Description
Files folder imageviews (1 directory)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  configurations  /  resources  /  views  
File Role Description
Files folder imageadmin (3 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  configurations  /  resources  /  views  /  admin  
File Role Description
  Accessible without login Plain text file mail.blade.php Aux. Auxiliary script
  Accessible without login Plain text file module.blade.php Aux. Auxiliary script
  Accessible without login Plain text file site.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  
File Role Description
Files folder imageconfig (1 file)
Files folder imageControllers (2 files)
Files folder imageDatabase (1 directory)
Files folder imageModels (1 file)
Files folder imageproviders (1 file)
Files folder imageresources (1 directory)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data
  Accessible without login Plain text file routes.php Example Example script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  /  config  
File Role Description
  Accessible without login Plain text file plugins.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  /  Controllers  
File Role Description
  Plain text file FeedBackController.php Class Class source
  Plain text file FeedbackPlugin.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  /  Database  
File Role Description
Files folder imageMigration (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  /  Database  /  Migration  
File Role Description
  Plain text file 2017_09_14_1505390..._feedback_table.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  /  Models  
File Role Description
  Plain text file FeedBackModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  /  providers  
File Role Description
  Plain text file FeedbackServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  /  resources  
File Role Description
Files folder imageviews (2 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  /  resources  /  views  
File Role Description
Files folder imageadmin (2 files)
Files folder imageplugins (1 file, 1 directory)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  /  resources  /  views  /  admin  
File Role Description
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  /  resources  /  views  /  plugins  
File Role Description
Files folder imageadmin (1 file)
  Accessible without login Plain text file Feedback.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  feedback  /  resources  /  views  /  plugins  /  admin  
File Role Description
  Accessible without login Plain text file feedback.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  gate  
File Role Description
Files folder imageControllers (1 file)
Files folder imageDatabase (1 directory)
Files folder imagehelpers (1 file)
Files folder imageModels (3 files)
Files folder imageproviders (1 file)
Files folder imageresources (1 directory)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  gate  /  Controllers  
File Role Description
  Plain text file RoleController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  gate  /  Database  
File Role Description
Files folder imageMigration (2 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  gate  /  Database  /  Migration  
File Role Description
  Plain text file 2017_09_09_1504951...ermission_table.php Class Class source
  Plain text file 2017_09_22_1506067...ermission_table.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  gate  /  helpers  
File Role Description
  Plain text file CGate.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  gate  /  Models  
File Role Description
  Plain text file HasPermissionModel.php Class Class source
  Plain text file PermissionModel.php Class Class source
  Plain text file RolesModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  gate  /  providers  
File Role Description
  Plain text file CGateServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  gate  /  resources  
File Role Description
Files folder imageviews (1 directory)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  gate  /  resources  /  views  
File Role Description
Files folder imageadmin (2 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  gate  /  resources  /  views  /  admin  
File Role Description
  Accessible without login Plain text file gates.blade.php Aux. Auxiliary script
  Accessible without login Plain text file roles.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  
File Role Description
Files folder imageconfig (2 files)
Files folder imageControllers (1 file)
Files folder imagehelpers (1 file)
Files folder imageproviders (1 file)
Files folder imageresources (1 directory)
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data
  Accessible without login Plain text file routes.php Example Example script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  config  
File Role Description
  Accessible without login Plain text file mailer.php Aux. Auxiliary script
  Accessible without login Plain text file plugins.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  Controllers  
File Role Description
  Plain text file SliderPlugin.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  helpers  
File Role Description
  Plain text file CmsMail.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  providers  
File Role Description
  Plain text file LayoutServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  resources  
File Role Description
Files folder imageviews (5 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  resources  /  views  
File Role Description
Files folder imageadmin (3 files, 1 directory)
Files folder imagemail (1 file)
Files folder imageplugins (2 directories)
Files folder imagesite (3 files)
Files folder imagewidget (2 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  resources  /  views  /  admin  
File Role Description
Files folder imagehead (1 file)
  Accessible without login Plain text file master.blade.php Aux. Auxiliary script
  Accessible without login Plain text file sidemenu.blade.php Aux. Auxiliary script
  Accessible without login Plain text file top_nav.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  resources  /  views  /  admin  /  head  
File Role Description
  Accessible without login Plain text file list_head.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  resources  /  views  /  mail  
File Role Description
  Accessible without login Plain text file master.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  resources  /  views  /  plugins  
File Role Description
Files folder imageadmin (1 file)
Files folder imagesite (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  resources  /  views  /  plugins  /  admin  
File Role Description
  Accessible without login Plain text file slider.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  resources  /  views  /  plugins  /  site  
File Role Description
  Accessible without login Plain text file slider.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  resources  /  views  /  site  
File Role Description
  Accessible without login Plain text file master.blade.php Aux. Auxiliary script
  Accessible without login Plain text file notifications.blade.php Aux. Auxiliary script
  Accessible without login Plain text file welcome.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  layout  /  resources  /  views  /  widget  
File Role Description
  Accessible without login Plain text file editor.blade.php Aux. Auxiliary script
  Accessible without login Plain text file image.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  
File Role Description
Files folder imageconfig (1 file)
Files folder imageConsole (1 directory)
Files folder imageControllers (3 files)
Files folder imageDatabase (1 directory)
Files folder imagehelpers (1 file)
Files folder imageModels (7 files)
Files folder imageproviders (1 file)
Files folder imageresources (1 directory)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data
  Accessible without login Plain text file routes.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  config  
File Role Description
  Accessible without login Plain text file roles.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  Console  
File Role Description
Files folder imageCommands (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  Console  /  Commands  
File Role Description
  Plain text file AdminMenu.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  Controllers  
File Role Description
  Plain text file BaseController.php Class Class source
  Plain text file MenuController.php Class Class source
  Plain text file WmenuController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  Database  
File Role Description
Files folder imageMigration (4 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  Database  /  Migration  
File Role Description
  Plain text file 2017_09_08_1504856...enu_items_table.php Class Class source
  Plain text file 2017_09_13_1505300...enu_group_table.php Class Class source
  Plain text file 2017_09_13_1505300...dmin_menu_table.php Class Class source
  Plain text file 2017_10_31_1509426...menu_permission.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  helpers  
File Role Description
  Plain text file Menu.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  Models  
File Role Description
  Plain text file AdminMenuGroupModel.php Class Class source
  Plain text file AdminMenuModel.php Class Class source
  Plain text file AdminMenuPermissionModel.php Class Class source
  Plain text file Menu.php Class Class source
  Plain text file MenuItem.php Class Class source
  Plain text file MenuItemsModel.php Class Class source
  Plain text file MenuModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  providers  
File Role Description
  Plain text file MenuServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  resources  
File Role Description
Files folder imageviews (1 file, 1 directory)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  resources  /  views  
File Role Description
Files folder imageadmin (4 files)
  Accessible without login Plain text file wmenuindex.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  menu  /  resources  /  views  /  admin  
File Role Description
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script
  Accessible without login Plain text file menu.blade.php Aux. Auxiliary script
  Accessible without login Plain text file menu_assign.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  module  
File Role Description
Files folder imageConsole (1 directory)
Files folder imageDatabase (1 directory)
Files folder imagehelpers (1 file)
Files folder imageModels (1 file)
Files folder imageproviders (1 file)
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  module  /  Console  
File Role Description
Files folder imageCommands (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  module  /  Console  /  Commands  
File Role Description
  Plain text file ModuleUpdate.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  module  /  Database  
File Role Description
Files folder imageMigration (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  module  /  Database  /  Migration  
File Role Description
  Plain text file 2017_09_09_1504947...te_module_table.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  module  /  helpers  
File Role Description
  Plain text file Module.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  module  /  Models  
File Role Description
  Plain text file ModuleModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  module  /  providers  
File Role Description
  Plain text file ModuleServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  
File Role Description
Files folder imageconfig (1 file)
Files folder imageControllers (1 file)
Files folder imageDatabase (1 directory)
Files folder imageJobs (1 file)
Files folder imageMail (2 files)
Files folder imageModels (1 file)
Files folder imageProviders (1 file)
Files folder imageresources (1 directory)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data
  Accessible without login Plain text file routes.php Example Example script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  config  
File Role Description
  Accessible without login Plain text file plugins.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  Controllers  
File Role Description
  Plain text file NewsletterController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  Database  
File Role Description
Files folder imageMigration (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  Database  /  Migration  
File Role Description
  Plain text file 2017_10_24_1508829...ubscibers_table.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  Jobs  
File Role Description
  Plain text file SendNewsLetter.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  Mail  
File Role Description
  Plain text file NewsLetterMail.php Class Class source
  Plain text file SubscriptionConfirmMail.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  Models  
File Role Description
  Plain text file NewsLetterModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  Providers  
File Role Description
  Plain text file NewsletterServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  resources  
File Role Description
Files folder imageviews (3 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  resources  /  views  
File Role Description
Files folder imageadmin (3 files)
Files folder imagemail (2 files)
Files folder imageplugins (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  resources  /  views  /  admin  
File Role Description
  Accessible without login Plain text file create.blade.php Aux. Auxiliary script
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file view_sub.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  resources  /  views  /  mail  
File Role Description
  Accessible without login Plain text file newsletter.blade.php Aux. Auxiliary script
  Accessible without login Plain text file subscription.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  newsletter  /  resources  /  views  /  plugins  
File Role Description
  Accessible without login Plain text file NewsLetter.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  
File Role Description
Files folder imageControllers (1 file)
Files folder imageDatabase (1 directory)
Files folder imagehelpers (1 file)
Files folder imageModels (1 file)
Files folder imageproviders (1 file)
Files folder imageresources (1 directory)
Files folder imagesearch (1 file)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data
  Accessible without login Plain text file routes.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  /  Controllers  
File Role Description
  Plain text file PageController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  /  Database  
File Role Description
Files folder imageMigration (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  /  Database  /  Migration  
File Role Description
  Plain text file 2017_09_07_1504783...eate_page_table.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  /  helpers  
File Role Description
  Plain text file Page.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  /  Models  
File Role Description
  Plain text file PageModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  /  providers  
File Role Description
  Plain text file PageServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  /  resources  
File Role Description
Files folder imageviews (2 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  /  resources  /  views  
File Role Description
Files folder imageadmin (2 files)
Files folder imagesite (2 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  /  resources  /  views  /  admin  
File Role Description
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  /  resources  /  views  /  site  
File Role Description
  Accessible without login Plain text file page.blade.php Aux. Auxiliary script
  Accessible without login Plain text file search.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  page  /  search  
File Role Description
  Plain text file Page.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  
File Role Description
Files folder imageconfig (1 file)
Files folder imageConsole (1 directory)
Files folder imageControllers (2 files)
Files folder imageDatabase (1 directory)
Files folder imagehelpers (1 file)
Files folder imageModels (1 file)
Files folder imageproviders (1 file)
Files folder imageresources (1 directory)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  config  
File Role Description
  Accessible without login Plain text file plugins.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  Console  
File Role Description
Files folder imageCommands (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  Console  /  Commands  
File Role Description
  Plain text file PluginsUpdate.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  Controllers  
File Role Description
  Plain text file LRpopup.php Class Class source
  Plain text file PluginsController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  Database  
File Role Description
Files folder imageMigration (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  Database  /  Migration  
File Role Description
  Plain text file 2017_09_12_1505197...e_plugins_table.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  helpers  
File Role Description
  Plain text file Plugins.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  Models  
File Role Description
  Plain text file PluginsModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  providers  
File Role Description
  Plain text file PluginsServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  resources  
File Role Description
Files folder imageviews (1 file, 2 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  resources  /  views  
File Role Description
Files folder imageadmin (2 files)
Files folder imageplugins (1 file, 1 directory)
  Accessible without login Plain text file user.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  resources  /  views  /  admin  
File Role Description
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  resources  /  views  /  plugins  
File Role Description
Files folder imageadmin (2 files)
  Accessible without login Plain text file LRpopup.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  plugins  /  resources  /  views  /  plugins  /  admin  
File Role Description
  Accessible without login Plain text file LRpopup.blade.php Aux. Auxiliary script
  Accessible without login Plain text file master.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  search  
File Role Description
Files folder imageControllers (1 file)
Files folder imageProviders (1 file)
Files folder imageresources (1 directory)
Files folder imagetraits (1 file)
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data
  Accessible without login Plain text file routes.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  search  /  Controllers  
File Role Description
  Plain text file SearchController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  search  /  Providers  
File Role Description
  Plain text file SearchServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  search  /  resources  
File Role Description
Files folder imageviews (1 directory)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  search  /  resources  /  views  
File Role Description
Files folder imagesite (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  search  /  resources  /  views  /  site  
File Role Description
  Accessible without login Plain text file result.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  search  /  traits  
File Role Description
  Plain text file Searchable.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  
File Role Description
Files folder imageconfig (1 file)
Files folder imageControllers (1 file)
Files folder imageDatabase (2 directories)
Files folder imageEvents (1 file)
Files folder imagehelpers (1 file)
Files folder imageListeners (1 file)
Files folder imageMail (2 files)
Files folder imageMiddleware (1 file)
Files folder imageModels (1 file)
Files folder imageproviders (2 files)
Files folder imageresources (1 directory)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data
  Accessible without login Plain text file routes.php Example Example script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  config  
File Role Description
  Accessible without login Plain text file roles.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  Controllers  
File Role Description
  Plain text file UserController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  Database  
File Role Description
Files folder imageMigration (1 file)
Files folder imageseeds (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  Database  /  Migration  
File Role Description
  Plain text file 2017_09_02_1504351466_create_users.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  Database  /  seeds  
File Role Description
  Plain text file AdminSeeder.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  Events  
File Role Description
  Plain text file UserRegisteredEvent.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  helpers  
File Role Description
  Plain text file User.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  Listeners  
File Role Description
  Plain text file UserRegisteredMailSendListener.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  Mail  
File Role Description
  Plain text file ForgetPasswordMail.php Class Class source
  Plain text file UserRegisteredMail.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  Middleware  
File Role Description
  Plain text file UserCheck.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  Models  
File Role Description
  Plain text file UserModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  providers  
File Role Description
  Plain text file UserEventServiceProvider.php Class Class source
  Plain text file UserServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  resources  
File Role Description
Files folder imageviews (3 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  resources  /  views  
File Role Description
Files folder imageadmin (2 files, 1 directory)
Files folder imagemail (2 files)
Files folder imagesite (3 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  resources  /  views  /  admin  
File Role Description
Files folder imageconfiguration (1 file)
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  resources  /  views  /  admin  /  configuration  
File Role Description
  Accessible without login Plain text file configuration.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  resources  /  views  /  mail  
File Role Description
  Accessible without login Plain text file user_forget_password.blade.php Aux. Auxiliary script
  Accessible without login Plain text file user_register.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  user  /  resources  /  views  /  site  
File Role Description
  Accessible without login Plain text file login.blade.php Aux. Auxiliary script
  Accessible without login Plain text file password_change.blade.php Aux. Auxiliary script
  Accessible without login Plain text file user.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  usergroup  
File Role Description
Files folder imageControllers (1 file)
Files folder imageDatabase (1 directory)
Files folder imageModels (2 files)
Files folder imageproviders (1 file)
Files folder imageresources (1 directory)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  usergroup  /  Controllers  
File Role Description
  Plain text file UserGroupController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  usergroup  /  Database  
File Role Description
Files folder imageMigration (2 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  usergroup  /  Database  /  Migration  
File Role Description
  Plain text file 2017_09_02_1504351...ate_user_groups.php Class Class source
  Plain text file 2017_09_02_1504351..._user_group_map.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  usergroup  /  Models  
File Role Description
  Plain text file UserGroupMapModel.php Class Class source
  Plain text file UserGroupModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  usergroup  /  providers  
File Role Description
  Plain text file UserGroupServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  usergroup  /  resources  
File Role Description
Files folder imageviews (1 file, 1 directory)

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  usergroup  /  resources  /  views  
File Role Description
Files folder imageadmin (2 files)
  Accessible without login Plain text file user.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  core  /  usergroup  /  resources  /  views  /  admin  
File Role Description
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  local  
File Role Description
Files folder imagetheme1 (2 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  
File Role Description
Files folder imagelocations (6 files, 5 directories)
Files folder imagesociallinks (4 files, 6 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  
File Role Description
Files folder imageControllers (3 files)
Files folder imageDatabase (1 directory)
Files folder imageModels (3 files)
Files folder imageProviders (1 file)
Files folder imageresources (1 directory)
  Accessible without login Plain text file adminroutes.php Example Example script
  Accessible without login Plain text file apiroutes.php Aux. Auxiliary script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file menu.xml Data Auxiliary data
  Accessible without login Plain text file module.json Data Auxiliary data
  Accessible without login Plain text file routes.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  /  Controllers  
File Role Description
  Plain text file CityController.php Class Class source
  Plain text file CountryController.php Class Class source
  Plain text file StateController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  /  Database  
File Role Description
Files folder imageMigration (3 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  /  Database  /  Migration  
File Role Description
  Plain text file 2018_10_13_1539448...countries_table.php Class Class source
  Plain text file 2018_10_13_1539449...te_states_table.php Class Class source
  Plain text file 2018_10_13_1539449...te_cities_table.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  /  Models  
File Role Description
  Plain text file CitiesModel.php Class Class source
  Plain text file CountriesModel.php Class Class source
  Plain text file StatesModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  /  Providers  
File Role Description
  Plain text file LocationsServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  /  resources  
File Role Description
Files folder imageviews (1 directory)

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  /  resources  /  views  
File Role Description
Files folder imageadmin (3 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  /  resources  /  views  /  admin  
File Role Description
Files folder imagecity (3 files)
Files folder imagecountry (3 files)
Files folder imagestate (3 files)

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  /  resources  /  views  /  admin  /  city  
File Role Description
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file import.blade.php Aux. Auxiliary script
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  /  resources  /  views  /  admin  /  country  
File Role Description
  Accessible without login Plain text file country_import.blade.php Aux. Auxiliary script
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  locations  /  resources  /  views  /  admin  /  state  
File Role Description
  Accessible without login Plain text file edit.blade.php Aux. Auxiliary script
  Accessible without login Plain text file import.blade.php Aux. Auxiliary script
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  sociallinks  /  config  
File Role Description
  Accessible without login Plain text file plugins.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  sociallinks  /  Controllers  
File Role Description
  Plain text file SociallinksController.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  sociallinks  /  Database  
File Role Description
Files folder imageMigration (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  sociallinks  /  Database  /  Migration  
File Role Description
  Plain text file 2017_11_08_1510132...ial_links_table.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  sociallinks  /  Models  
File Role Description
  Plain text file SocialLinksModel.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  sociallinks  /  Providers  
File Role Description
  Plain text file SociallinksServiceProvider.php Class Class source

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  sociallinks  /  resources  
File Role Description
Files folder imageviews (2 directories)

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  sociallinks  /  resources  /  views  
File Role Description
Files folder imageadmin (1 file)
Files folder imageplugins (1 file)

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  sociallinks  /  resources  /  views  /  admin  
File Role Description
  Accessible without login Plain text file index.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  cms  /  local  /  theme1  /  sociallinks  /  resources  /  views  /  plugins  
File Role Description
  Accessible without login Plain text file sociallinks.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  stubs  /  module  
File Role Description
Files folder imageConsole (1 directory)
Files folder imageControllers (3 files)
Files folder imageDatabase (2 directories)
Files folder imageEvents (1 file)
Files folder imageJobs (1 file)
Files folder imageListeners (1 file)
Files folder imageMail (1 file)
Files folder imageMiddleware (1 file)
Files folder imageModels (1 file)
Files folder imageNotifications (1 file)
Files folder imageProviders (2 files)
Files folder imageresources (1 directory)
  Accessible without login Plain text file adminroutes.stub Example Example script
  Accessible without login Plain text file composer.stub Data Auxiliary data
  Accessible without login Plain text file module.stub Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  module  /  Console  
File Role Description
Files folder imageCommands (1 file)

  Files folder image Files  /  src  /  stubs  /  module  /  Console  /  Commands  
File Role Description
  Plain text file command.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  Controllers  
File Role Description
  Plain text file ModuleCController.stub Class Class source
  Plain text file ModuleController.stub Class Class source
  Plain text file ModuleRController.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  Database  
File Role Description
Files folder imageMigration (3 files)
Files folder imageSeeds (1 file)

  Files folder image Files  /  src  /  stubs  /  module  /  Database  /  Migration  
File Role Description
  Plain text file createmigtration.stub Class Class source
  Plain text file Migration.stub Class Class source
  Plain text file tablemigration.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  Database  /  Seeds  
File Role Description
  Plain text file seeder.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  Events  
File Role Description
  Plain text file event.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  Jobs  
File Role Description
  Plain text file job.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  Listeners  
File Role Description
  Plain text file listener.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  Mail  
File Role Description
  Plain text file mail.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  Middleware  
File Role Description
  Plain text file middleware.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  Models  
File Role Description
  Plain text file Model.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  Notifications  
File Role Description
  Plain text file notification.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  Providers  
File Role Description
  Plain text file cprovider.stub Class Class source
  Plain text file provider.stub Class Class source

  Files folder image Files  /  src  /  stubs  /  module  /  resources  
File Role Description
Files folder imageviews (1 directory)

  Files folder image Files  /  src  /  stubs  /  module  /  resources  /  views  
File Role Description
Files folder imageadmin (2 files)

  Files folder image Files  /  src  /  stubs  /  module  /  resources  /  views  /  admin  
File Role Description
  Accessible without login Plain text file edit.blade.stub Data Auxiliary data
  Accessible without login Plain text file index.blade.stub Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  
File Role Description
Files folder imagetheme1 (5 directories)
  Accessible without login Image file logo.png Icon Icon image

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  
File Role Description
Files folder imagecss (4 files)
Files folder imageimages (1 file)
Files folder imageimg (7 files)
Files folder imagejs (4 files)
Files folder imagetheme (2 directories)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  css  
File Role Description
  Accessible without login Plain text file animate.min.css Data Auxiliary data
  Accessible without login Plain text file extra-bootstrap.css Data Auxiliary data
  Accessible without login Plain text file reset.css Data Auxiliary data
  Accessible without login Plain text file top.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  images  
File Role Description
  Accessible without login Image file search.png Icon Icon image

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  img  
File Role Description
  Accessible without login Plain text file cd-icon-close.svg Data Auxiliary data
  Accessible without login Plain text file cd-icon-email.svg Data Auxiliary data
  Accessible without login Plain text file cd-icon-menu.svg Data Auxiliary data
  Accessible without login Plain text file cd-icon-password.svg Data Auxiliary data
  Accessible without login Plain text file cd-icon-username.svg Data Auxiliary data
  Accessible without login Plain text file cd-logo.svg Data Auxiliary data
  Accessible without login Image file no-image.png Icon Icon image

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  js  
File Role Description
  Accessible without login Plain text file angular.min.js Data Auxiliary data
  Accessible without login Plain text file cms-datatabe.js Data Auxiliary data
  Accessible without login Plain text file modernizr.js Data Auxiliary data
  Accessible without login Plain text file wow.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  
File Role Description
Files folder imagebuild (3 directories)
Files folder imagevendors (29 directories)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  build  
File Role Description
Files folder imagecss (2 files)
Files folder imageimages (7 files)
Files folder imagejs (2 files)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  build  /  css  
File Role Description
  Accessible without login Plain text file custom.css Data Auxiliary data
  Accessible without login Plain text file custom.min.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  build  /  images  
File Role Description
  Accessible without login Image file back_disabled.png Icon Icon image
  Accessible without login Image file back_enabled.png Icon Icon image
  Accessible without login Image file back_enabled_hover.png Icon Icon image
  Accessible without login Image file forward_disabled.png Icon Icon image
  Accessible without login Image file forward_enabled.png Icon Icon image
  Accessible without login Image file forward_enabled_hover.png Icon Icon image
  Accessible without login Image file loading.gif Icon Icon image

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  build  /  js  
File Role Description
  Accessible without login Plain text file custom.js Data Auxiliary data
  Accessible without login Plain text file custom.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  
File Role Description
Files folder imageanimate.css (3 files)
Files folder imagebootstrap-daterangepicker (3 files)
Files folder imagebootstrap-datetimepicker (2 directories)
Files folder imagebootstrap-progressbar (2 files, 1 directory)
Files folder imagebootstrap (3 directories)
Files folder imagedatatables.net-bs (2 files, 2 directories)
Files folder imagedatatables.net-buttons-bs (1 file, 2 directories)
Files folder imagedatatables.net-buttons (1 file, 1 directory)
Files folder imagedatatables.net-fixedheader-bs (2 files, 1 directory)
Files folder imagedatatables.net-fixedheader (1 file, 1 directory)
Files folder imagedatatables.net-keytable (2 files, 1 directory)
Files folder imagedatatables.net-responsive-bs (2 files, 2 directories)
Files folder imagedatatables.net-responsive (2 files, 1 directory)
Files folder imagedatatables.net-scroller-bs (2 files, 1 directory)
Files folder imagedatatables.net-scroller (2 files, 1 directory)
Files folder imagedatatables.net (2 files, 1 directory)
Files folder imagefeedback (2 files)
Files folder imagefont-awesome (1 file, 2 directories)
Files folder imageiCheck (2 files, 1 directory)
Files folder imagejquery (1 directory)
Files folder imagelaravel-filemanager (5 directories)
Files folder imagemenu (4 files, 1 directory)
Files folder imagemoment (1 file, 1 directory)
Files folder imagenprogress (3 files, 1 directory)
Files folder imagepnotify (3 files, 2 directories)
Files folder imageselect2 (6 files, 1 directory)
Files folder imageslider (2 files)
Files folder imageswitchery (2 files, 1 directory)
Files folder imagevalidator (3 files)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  animate.css  
File Role Description
  Accessible without login Plain text file animate.css Data Auxiliary data
  Accessible without login Plain text file animate.min.css Data Auxiliary data
  Accessible without login Plain text file gulpfile.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap-daterangepicker  
File Role Description
  Accessible without login Plain text file daterangepicker.css Data Auxiliary data
  Accessible without login Plain text file daterangepicker.js Data Auxiliary data
  Accessible without login Image file drp.png Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap-datetimepicker  
File Role Description
Files folder imagebuild (2 directories)
Files folder imagesrc (1 directory)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap-datetimepicker  /  build  
File Role Description
Files folder imagecss (3 files)
Files folder imagejs (1 file)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap-datetimepicker  /  build  /  css  
File Role Description
  Accessible without login Plain text file bootstrap-datetimepicker-standalone.css Data Auxiliary data
  Accessible without login Plain text file bootstrap-datetimepicker.css Data Auxiliary data
  Accessible without login Plain text file bootstrap-datetimepicker.min.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap-datetimepicker  /  build  /  js  
File Role Description
  Accessible without login Plain text file bootstrap-datetimepicker.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap-datetimepicker  /  src  
File Role Description
Files folder imagejs (1 file)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap-datetimepicker  /  src  /  js  
File Role Description
  Accessible without login Plain text file bootstrap-datetimepicker.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap-progressbar  
File Role Description
Files folder imagecss (1 file)
  Accessible without login Plain text file bootstrap-progressbar.js Data Auxiliary data
  Accessible without login Plain text file bootstrap-progressbar.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap-progressbar  /  css  
File Role Description
  Accessible without login Plain text file bootstrap-progressbar-3.3.4.min.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap  
File Role Description
Files folder imagedist (3 directories)
Files folder imagefonts (1 file)
Files folder imagejs (12 files)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap  /  dist  
File Role Description
Files folder imagecss (3 files)
Files folder imagefonts (1 file)
Files folder imagejs (3 files)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap  /  dist  /  css  
File Role Description
  Accessible without login Plain text file bootstrap-theme.css Data Auxiliary data
  Accessible without login Plain text file bootstrap-theme.min.css Data Auxiliary data
  Accessible without login Plain text file bootstrap.min.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap  /  dist  /  fonts  
File Role Description
  Accessible without login Plain text file glyphicons-halflings-regular.svg Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap  /  dist  /  js  
File Role Description
  Accessible without login Plain text file bootstrap.js Data Auxiliary data
  Accessible without login Plain text file bootstrap.min.js Data Auxiliary data
  Accessible without login Plain text file npm.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap  /  fonts  
File Role Description
  Accessible without login Plain text file glyphicons-halflings-regular.svg Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  bootstrap  /  js  
File Role Description
  Accessible without login Plain text file affix.js Data Auxiliary data
  Accessible without login Plain text file alert.js Data Auxiliary data
  Accessible without login Plain text file button.js Data Auxiliary data
  Accessible without login Plain text file carousel.js Data Auxiliary data
  Accessible without login Plain text file collapse.js Data Auxiliary data
  Accessible without login Plain text file dropdown.js Data Auxiliary data
  Accessible without login Plain text file modal.js Data Auxiliary data
  Accessible without login Plain text file popover.js Data Auxiliary data
  Accessible without login Plain text file scrollspy.js Data Auxiliary data
  Accessible without login Plain text file tab.js Data Auxiliary data
  Accessible without login Plain text file tooltip.js Data Auxiliary data
  Accessible without login Plain text file transition.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-bs  
File Role Description
Files folder imagecss (2 files)
Files folder imagejs (2 files)
  Accessible without login Plain text file License.txt Doc. Documentation
  Accessible without login Plain text file Readme.md Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-bs  /  css  
File Role Description
  Accessible without login Plain text file dataTables.bootstrap.css Data Auxiliary data
  Accessible without login Plain text file dataTables.bootstrap.min.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-bs  /  js  
File Role Description
  Accessible without login Plain text file dataTables.bootstrap.js Data Auxiliary data
  Accessible without login Plain text file dataTables.bootstrap.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-buttons-bs  
File Role Description
Files folder imagecss (2 files)
Files folder imagejs (2 files)
  Accessible without login Plain text file License.txt Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-buttons-bs  /  css  
File Role Description
  Accessible without login Plain text file buttons.bootstrap.css Data Auxiliary data
  Accessible without login Plain text file buttons.bootstrap.min.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-buttons-bs  /  js  
File Role Description
  Accessible without login Plain text file buttons.bootstrap.js Data Auxiliary data
  Accessible without login Plain text file buttons.bootstrap.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-buttons  
File Role Description
Files folder imagejs (10 files)
  Accessible without login Plain text file License.txt Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-buttons  /  js  
File Role Description
  Accessible without login Plain text file buttons.colVis.js Data Auxiliary data
  Accessible without login Plain text file buttons.colVis.min.js Data Auxiliary data
  Accessible without login Plain text file buttons.flash.js Data Auxiliary data
  Accessible without login Plain text file buttons.flash.min.js Data Auxiliary data
  Accessible without login Plain text file buttons.html5.js Data Auxiliary data
  Accessible without login Plain text file buttons.html5.min.js Data Auxiliary data
  Accessible without login Plain text file buttons.print.js Data Auxiliary data
  Accessible without login Plain text file buttons.print.min.js Data Auxiliary data
  Accessible without login Plain text file dataTables.buttons.js Data Auxiliary data
  Accessible without login Plain text file dataTables.buttons.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-fixedheader-bs  
File Role Description
Files folder imagecss (2 files)
  Accessible without login Plain text file License.txt Doc. Documentation
  Accessible without login Plain text file Readme.md Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-fixedheader-bs  /  css  
File Role Description
  Accessible without login Plain text file fixedHeader.bootstrap.css Data Auxiliary data
  Accessible without login Plain text file fixedHeader.bootstrap.min.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-fixedheader  
File Role Description
Files folder imagejs (2 files)
  Accessible without login Plain text file License.txt Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-fixedheader  /  js  
File Role Description
  Accessible without login Plain text file dataTables.fixedHeader.js Data Auxiliary data
  Accessible without login Plain text file dataTables.fixedHeader.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-keytable  
File Role Description
Files folder imagejs (2 files)
  Accessible without login Plain text file License.txt Doc. Documentation
  Accessible without login Plain text file Readme.md Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-keytable  /  js  
File Role Description
  Accessible without login Plain text file dataTables.keyTable.js Data Auxiliary data
  Accessible without login Plain text file dataTables.keyTable.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-responsive-bs  
File Role Description
Files folder imagecss (2 files)
Files folder imagejs (1 file)
  Accessible without login Plain text file License.txt Doc. Documentation
  Accessible without login Plain text file Readme.md Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-responsive-bs  /  css  
File Role Description
  Accessible without login Plain text file responsive.bootstrap.css Data Auxiliary data
  Accessible without login Plain text file responsive.bootstrap.min.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-responsive-bs  /  js  
File Role Description
  Accessible without login Plain text file responsive.bootstrap.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-responsive  
File Role Description
Files folder imagejs (2 files)
  Accessible without login Plain text file License.txt Doc. Documentation
  Accessible without login Plain text file Readme.md Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-responsive  /  js  
File Role Description
  Accessible without login Plain text file dataTables.responsive.js Data Auxiliary data
  Accessible without login Plain text file dataTables.responsive.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-scroller-bs  
File Role Description
Files folder imagecss (2 files)
  Accessible without login Plain text file License.txt Doc. Documentation
  Accessible without login Plain text file Readme.md Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-scroller-bs  /  css  
File Role Description
  Accessible without login Plain text file scroller.bootstrap.css Data Auxiliary data
  Accessible without login Plain text file scroller.bootstrap.min.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-scroller  
File Role Description
Files folder imagejs (2 files)
  Accessible without login Plain text file License.txt Doc. Documentation
  Accessible without login Plain text file Readme.md Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net-scroller  /  js  
File Role Description
  Accessible without login Plain text file dataTables.scroller.js Data Auxiliary data
  Accessible without login Plain text file dataTables.scroller.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net  
File Role Description
Files folder imagejs (2 files)
  Accessible without login Plain text file License.txt Doc. Documentation
  Accessible without login Plain text file Readme.md Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  datatables.net  /  js  
File Role Description
  Accessible without login Plain text file jquery.dataTables.js Data Auxiliary data
  Accessible without login Plain text file jquery.dataTables.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  feedback  
File Role Description
  Accessible without login Plain text file jquery.feedBackBox.css Data Auxiliary data
  Accessible without login Plain text file jquery.feedBackBox.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  font-awesome  
File Role Description
Files folder imagecss (1 file)
Files folder imagefonts (1 file)
  Accessible without login Plain text file HELP-US-OUT.txt Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  font-awesome  /  css  
File Role Description
  Accessible without login Plain text file font-awesome.min.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  font-awesome  /  fonts  
File Role Description
  Accessible without login Plain text file fontawesome-webfont.svg Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  iCheck  
File Role Description
Files folder imageskins (1 file, 6 directories)
  Accessible without login Plain text file icheck.js Data Auxiliary data
  Accessible without login Plain text file icheck.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  iCheck  /  skins  
File Role Description
Files folder imageflat (21 files)
Files folder imagefuturico (2 files)
Files folder imageline (12 files)
Files folder imageminimal (21 files)
Files folder imagepolaris (2 files)
Files folder imagesquare (21 files)
  Accessible without login Plain text file all.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  iCheck  /  skins  /  flat  
File Role Description
  Accessible without login Plain text file aero.css Data Auxiliary data
  Accessible without login Image file aero.png Icon Icon image
  Accessible without login Plain text file blue.css Data Auxiliary data
  Accessible without login Image file blue.png Icon Icon image
  Accessible without login Plain text file flat.css Data Auxiliary data
  Accessible without login Image file flat.png Icon Icon image
  Accessible without login Plain text file green.css Data Auxiliary data
  Accessible without login Image file green.png Icon Icon image
  Accessible without login Plain text file grey.css Data Auxiliary data
  Accessible without login Image file grey.png Icon Icon image
  Accessible without login Plain text file orange.css Data Auxiliary data
  Accessible without login Image file orange.png Icon Icon image
  Accessible without login Plain text file pink.css Data Auxiliary data
  Accessible without login Image file pink.png Icon Icon image
  Accessible without login Plain text file purple.css Data Auxiliary data
  Accessible without login Image file purple.png Icon Icon image
  Accessible without login Plain text file red.css Data Auxiliary data
  Accessible without login Image file red.png Icon Icon image
  Accessible without login Plain text file yellow.css Data Auxiliary data
  Accessible without login Image file yellow.png Icon Icon image
  Accessible without login Plain text file _all.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  iCheck  /  skins  /  futurico  
File Role Description
  Accessible without login Plain text file futurico.css Data Auxiliary data
  Accessible without login Image file futurico.png Icon Icon image

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  iCheck  /  skins  /  line  
File Role Description
  Accessible without login Plain text file aero.css Data Auxiliary data
  Accessible without login Plain text file blue.css Data Auxiliary data
  Accessible without login Plain text file green.css Data Auxiliary data
  Accessible without login Plain text file grey.css Data Auxiliary data
  Accessible without login Plain text file line.css Data Auxiliary data
  Accessible without login Image file line.png Icon Icon image
  Accessible without login Plain text file orange.css Data Auxiliary data
  Accessible without login Plain text file pink.css Data Auxiliary data
  Accessible without login Plain text file purple.css Data Auxiliary data
  Accessible without login Plain text file red.css Data Auxiliary data
  Accessible without login Plain text file yellow.css Data Auxiliary data
  Accessible without login Plain text file _all.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  iCheck  /  skins  /  minimal  
File Role Description
  Accessible without login Plain text file aero.css Data Auxiliary data
  Accessible without login Image file aero.png Icon Icon image
  Accessible without login Plain text file blue.css Data Auxiliary data
  Accessible without login Image file blue.png Icon Icon image
  Accessible without login Plain text file green.css Data Auxiliary data
  Accessible without login Image file green.png Icon Icon image
  Accessible without login Plain text file grey.css Data Auxiliary data
  Accessible without login Image file grey.png Icon Icon image
  Accessible without login Plain text file minimal.css Data Auxiliary data
  Accessible without login Image file minimal.png Icon Icon image
  Accessible without login Plain text file orange.css Data Auxiliary data
  Accessible without login Image file orange.png Icon Icon image
  Accessible without login Plain text file pink.css Data Auxiliary data
  Accessible without login Image file pink.png Icon Icon image
  Accessible without login Plain text file purple.css Data Auxiliary data
  Accessible without login Image file purple.png Icon Icon image
  Accessible without login Plain text file red.css Data Auxiliary data
  Accessible without login Image file red.png Icon Icon image
  Accessible without login Plain text file yellow.css Data Auxiliary data
  Accessible without login Image file yellow.png Icon Icon image
  Accessible without login Plain text file _all.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  iCheck  /  skins  /  polaris  
File Role Description
  Accessible without login Plain text file polaris.css Data Auxiliary data
  Accessible without login Image file polaris.png Icon Icon image

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  iCheck  /  skins  /  square  
File Role Description
  Accessible without login Plain text file aero.css Data Auxiliary data
  Accessible without login Image file aero.png Icon Icon image
  Accessible without login Plain text file blue.css Data Auxiliary data
  Accessible without login Image file blue.png Icon Icon image
  Accessible without login Plain text file green.css Data Auxiliary data
  Accessible without login Image file green.png Icon Icon image
  Accessible without login Plain text file grey.css Data Auxiliary data
  Accessible without login Image file grey.png Icon Icon image
  Accessible without login Plain text file orange.css Data Auxiliary data
  Accessible without login Image file orange.png Icon Icon image
  Accessible without login Plain text file pink.css Data Auxiliary data
  Accessible without login Image file pink.png Icon Icon image
  Accessible without login Plain text file purple.css Data Auxiliary data
  Accessible without login Image file purple.png Icon Icon image
  Accessible without login Plain text file red.css Data Auxiliary data
  Accessible without login Image file red.png Icon Icon image
  Accessible without login Plain text file square.css Data Auxiliary data
  Accessible without login Image file square.png Icon Icon image
  Accessible without login Plain text file yellow.css Data Auxiliary data
  Accessible without login Image file yellow.png Icon Icon image
  Accessible without login Plain text file _all.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  jquery  
File Role Description
Files folder imagedist (2 files)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  jquery  /  dist  
File Role Description
  Accessible without login Plain text file jquery.js Data Auxiliary data
  Accessible without login Plain text file jquery.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  laravel-filemanager  
File Role Description
Files folder imagecss (3 files)
Files folder imagefiles (1 file, 1 directory)
Files folder imageimages (1 directory)
Files folder imageimg (1 file)
Files folder imagejs (5 files)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  laravel-filemanager  /  css  
File Role Description
  Accessible without login Plain text file cropper.min.css Data Auxiliary data
  Accessible without login Plain text file lfm.css Data Auxiliary data
  Accessible without login Plain text file mfb.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  laravel-filemanager  /  files  
File Role Description
Files folder imagefolder-1 (1 file)
  Accessible without login Plain text file adobe.pdf Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  laravel-filemanager  /  files  /  folder-1  
File Role Description
  Accessible without login Image file sleeping-dog.jpg Icon Icon image

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  laravel-filemanager  /  images  
File Role Description
Files folder imagetest-folder (1 file, 1 directory)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  laravel-filemanager  /  images  /  test-folder  
File Role Description
Files folder imagethumbs (1 file)
  Accessible without login Image file sleeping-dog.jpg Icon Icon image

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  laravel-filemanager  /  images  /  test-folder  /  thumbs  
File Role Description
  Accessible without login Image file sleeping-dog.jpg Icon Icon image

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  laravel-filemanager  /  img  
File Role Description
  Accessible without login Image file folder.png Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  laravel-filemanager  /  js  
File Role Description
  Accessible without login Plain text file cropper.min.js Data Auxiliary data
  Accessible without login Plain text file jquery.form.min.js Data Auxiliary data
  Accessible without login Plain text file lfm.js Data Auxiliary data
  Accessible without login Plain text file mfb.js Data Auxiliary data
  Accessible without login Plain text file script.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  menu  
File Role Description
Files folder imageimages (1 file)
  Accessible without login Plain text file menu.js Data Auxiliary data
  Accessible without login Plain text file scripts.js Data Auxiliary data
  Accessible without login Plain text file scripts2.js Data Auxiliary data
  Accessible without login Plain text file style.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  menu  /  images  
File Role Description
  Accessible without login Image file spinner.gif Icon Icon image

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  moment  
File Role Description
Files folder imagemin (1 file)
  Accessible without login Plain text file moment.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  moment  /  min  
File Role Description
  Accessible without login Plain text file moment.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  nprogress  
File Role Description
Files folder imagesupport (2 files)
  Accessible without login Plain text file nprogress.css Data Auxiliary data
  Accessible without login Plain text file nprogress.js Data Auxiliary data
  Accessible without login Plain text file Readme.md Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  nprogress  /  support  
File Role Description
  Accessible without login Plain text file extras.css Data Auxiliary data
  Accessible without login Plain text file style.css Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  pnotify  
File Role Description
Files folder imagedist (18 files)
Files folder imagelibtests (1 directory)
  Accessible without login Plain text file bower.json Data Auxiliary data
  Accessible without login Plain text file COPYING Data Auxiliary data
  Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  pnotify  /  dist  
File Role Description
  Accessible without login Plain text file pnotify.animate.js Data Auxiliary data
  Accessible without login Plain text file pnotify.brighttheme.css Data Auxiliary data
  Accessible without login Plain text file pnotify.buttons.css Data Auxiliary data
  Accessible without login Plain text file pnotify.buttons.js Data Auxiliary data
  Accessible without login Plain text file pnotify.callbacks.js Data Auxiliary data
  Accessible without login Plain text file pnotify.confirm.js Data Auxiliary data
  Accessible without login Plain text file pnotify.css Data Auxiliary data
  Accessible without login Plain text file pnotify.desktop.js Data Auxiliary data
  Accessible without login Plain text file pnotify.history.css Data Auxiliary data
  Accessible without login Plain text file pnotify.history.js Data Auxiliary data
  Accessible without login Plain text file pnotify.js Data Auxiliary data
  Accessible without login Plain text file pnotify.material.css Data Auxiliary data
  Accessible without login Plain text file pnotify.mobile.css Data Auxiliary data
  Accessible without login Plain text file pnotify.mobile.js Data Auxiliary data
  Accessible without login Plain text file pnotify.nonblock.css Data Auxiliary data
  Accessible without login Plain text file pnotify.nonblock.js Data Auxiliary data
  Accessible without login Plain text file pnotify.reference.js Data Auxiliary data
  Accessible without login Plain text file pnotify.tooltip.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  pnotify  /  libtests  
File Role Description
Files folder imagebrowserify (1 file)

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  pnotify  /  libtests  /  browserify  
File Role Description
  Accessible without login Plain text file index.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  select2  
File Role Description
Files folder imagei18n (41 files)
  Accessible without login Plain text file select2.css Data Auxiliary data
  Accessible without login Plain text file select2.full.js Data Auxiliary data
  Accessible without login Plain text file select2.full.min.js Data Auxiliary data
  Accessible without login Plain text file select2.js Data Auxiliary data
  Accessible without login Plain text file select2.min.css Data Auxiliary data
  Accessible without login Plain text file select2.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  select2  /  i18n  
File Role Description
  Accessible without login Plain text file az.js Data Auxiliary data
  Accessible without login Plain text file bg.js Data Auxiliary data
  Accessible without login Plain text file ca.js Data Auxiliary data
  Accessible without login Plain text file cs.js Data Auxiliary data
  Accessible without login Plain text file da.js Data Auxiliary data
  Accessible without login Plain text file de.js Data Auxiliary data
  Accessible without login Plain text file en.js Data Auxiliary data
  Accessible without login Plain text file es.js Data Auxiliary data
  Accessible without login Plain text file et.js Data Auxiliary data
  Accessible without login Plain text file eu.js Data Auxiliary data
  Accessible without login Plain text file fa.js Data Auxiliary data
  Accessible without login Plain text file fi.js Data Auxiliary data
  Accessible without login Plain text file fr.js Data Auxiliary data
  Accessible without login Plain text file gl.js Data Auxiliary data
  Accessible without login Plain text file he.js Data Auxiliary data
  Accessible without login Plain text file hi.js Data Auxiliary data
  Accessible without login Plain text file hr.js Data Auxiliary data
  Accessible without login Plain text file hu.js Data Auxiliary data
  Accessible without login Plain text file id.js Data Auxiliary data
  Accessible without login Plain text file is.js Data Auxiliary data
  Accessible without login Plain text file it.js Data Auxiliary data
  Accessible without login Plain text file ko.js Data Auxiliary data
  Accessible without login Plain text file lt.js Data Auxiliary data
  Accessible without login Plain text file lv.js Data Auxiliary data
  Accessible without login Plain text file mk.js Data Auxiliary data
  Accessible without login Plain text file nb.js Data Auxiliary data
  Accessible without login Plain text file nl.js Data Auxiliary data
  Accessible without login Plain text file pl.js Data Auxiliary data
  Accessible without login Plain text file pt-BR.js Data Auxiliary data
  Accessible without login Plain text file pt.js Data Auxiliary data
  Accessible without login Plain text file ro.js Data Auxiliary data
  Accessible without login Plain text file ru.js Data Auxiliary data
  Accessible without login Plain text file sk.js Data Auxiliary data
  Accessible without login Plain text file sr.js Data Auxiliary data
  Accessible without login Plain text file sv.js Data Auxiliary data
  Accessible without login Plain text file th.js Data Auxiliary data
  Accessible without login Plain text file tr.js Data Auxiliary data
  Accessible without login Plain text file uk.js Data Auxiliary data
  Accessible without login Plain text file vi.js Data Auxiliary data
  Accessible without login Plain text file zh-CN.js Data Auxiliary data
  Accessible without login Plain text file zh-TW.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  slider  
File Role Description
  Accessible without login Plain text file sliderResponsive.css Data Auxiliary data
  Accessible without login Plain text file sliderResponsive.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  switchery  
File Role Description
Files folder imagedist (4 files)
  Accessible without login Plain text file switchery.css Data Auxiliary data
  Accessible without login Plain text file switchery.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  switchery  /  dist  
File Role Description
  Accessible without login Plain text file switchery.css Data Auxiliary data
  Accessible without login Plain text file switchery.js Data Auxiliary data
  Accessible without login Plain text file switchery.min.css Data Auxiliary data
  Accessible without login Plain text file switchery.min.js Data Auxiliary data

  Files folder image Files  /  src  /  stubs  /  skin  /  theme1  /  theme  /  vendors  /  validator  
File Role Description
  Accessible without login Plain text file fv.css Data Auxiliary data
  Accessible without login Plain text file multifield.js Data Auxiliary data
  Accessible without login Plain text file validator.js Data Auxiliary data

 Version Control Unique User Downloads Download Rankings  
 100%
Total:45
This week:1
All time:10,746
This week:560Up