# Directory Structure

Under the **`able-pro-vue-laravel/full-version`** directory, You will find the following folder structure.

{% tabs %}
{% tab title="Directory Structure" %}

```javascript
able-pro-vue-laravel/full-version
..

├── app                          -> Controllers & Models
├── bootstrap                    -> Contains cache and app.php
├── config                       -> Application's configuration files
├── database                     -> Migrations & seeds
├── public
├── resources
│   ├── fonts
│   ├── images
│   ├── styles                    -> Theme overrides styles
│   ├── ts
│   │ 	├── _mockApis          -> Mock JSON data to be used for apps
│   │ 	├── @core          	-> Common default components auto imports
│   │ 	├── @layouts          	
│   │ 	│   ├── components        -> Layouts components
│   │ 	├── composables 
│   │ 	├── data
│   │ 	├── layouts
│   │  	│   ├── blank
│   │  	│   ├── component
│   │  	│   ├── default
│   │ 	├── pages                 -> All Pages views
│   │ 	├── plugins
│   │  	│   ├── fake-api
│   │  	│   │   ├── handlers      -> Getters and Actions, it's types
│   │  	│   ├── vuetify           -> Contains theme style and theme
│   │ 	├── types
│   │ 	├── utils
│   │  	│   ├── i18n          
│   │  	│   │ 	├── locales       -> Languages .json file
│   │ 	├── views                 -> All Pages sub components
│   │   ├── App.vue               -> Starting point of application
│   ├── views                     -> Laravel setup main file
│   │ 	├── main.ts               -> Root entry file for the Vue application
├── routes                        -> Include routes web.php
├── storage                       -> Contains compile blade templates
├── tests		          -> For testing
├── .env  -> Include Database credentials and other environment variables
├── eslint.config.js              -> Eslint configuration
├── artisan                       -> Include artisan commands 
├── auto-imports.d.ts             -> Unplugin auto import file
├── components.d.ts               -> Unplugin vue components
├── composer.json                 -> Dependencies used by composer
├── config.ts                     -> Template const value & live customizer
├── env.d.ts                      -> Typescript only(for router layout setup)
├── package.json                  -> Dependencies used by node
├── tsconfig.json                 -> Typescript configuration
├── typed-router.d.ts             -> Unplugin vue router auto import files
├── vite.config.ts                -> Laravel's vite file
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://phoenixcoded.gitbook.io/able-pro/vue-laravel/directory-structure.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
