Folder Structure

All modules, components, themes are located in the /laracms folder in the root of the Laravel app.

Directly below the laracms folder you will find:

  • an app directory, with all the custom files for your project

  • a core directory, with the three core modules

  • a themes directory, with all the themes

/app
/bootstrap
/config
/database
/laracms
    /app
        /Http
        /Lara
        /Models
        /Providers
        /Resources
        /Routes
    /core
        /config
        /src
            /admin
            /common
            /front
    /themes
        /base
        /demo
/public
/resources
/routes
/storage

Namespaces

The core modules are namespaced as:

  • \Lara\Admin

  • \Lara\Common

  • \Lara\Front

The laracms/app folder is namespaced as:

  • \Eve

Last updated