> For the complete documentation index, see [llms.txt](https://pcoded.gitbook.io/light-able/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pcoded.gitbook.io/light-able/php/folder-structure.md).

# Folder Structure

I have tried to follow the standards and modular structure while developing the theme. Let's take a look at the package structure:

{% tabs %}
{% tab title="PHP" %}

```
├── 📁LightAble
    ├── 📁Admin
	├── 📁assets            // includes all scss, fonts, images, lang, js files for the development.
	|	├── 📁css            
	|	├── 📁fonts            
	|	├── 📁images
	|	├── 📁js            
	|	└── 📁json
	├── 📁application     // Includes all application files          
	├── 📁chart           // Includes all chart files
	├── 📁dashboard       // Includes all dashboard files     
	├── 📁demo            // Includes all demo files
	├── 📁elements        // Includes all commen files   
	├── 📁forms           // Includes all commen files
	├── 📁layouts         // Includes all commen files   
	├── 📁otherp          // Includes all commen files   
	├── 📁pages           // Includes all commen files  
	├── 📁scssphp	      // Includes all commen files
	├── 📁table           // Includes all commen files 
	├── 📁vendor          // Includes all commen files             
	├── 📁widget	      // Includes all commen files
	├── 📄index.php
	├── 📄index-2.php
	├── 📄index-2-old.php

```

{% endtab %}
{% endtabs %}
