Folder Structure
Use below velzon structure for modify and better understand the Velzon Laravel.
1. Velzon Laravel Folders
Folder | Path | Uses |
---|---|---|
|
app/Http/ |
All controller files here. |
|
app/ |
All Laravel Middlewares. you can add your custom also |
|
app/ |
All Laravel models. you can add your custom also |
|
database/ |
All Database related migrations. |
|
database/ |
All Database related seeders. you can make dummy data from seeders. |
|
routes/ |
You can add new route in routes/web.php or create api
in routes/api.php . |
|
resources/ |
All assets or Vue related code. |
|
/ |
Vite or build related code. if you don't have knowledge about this then don't modify it. |
Use below velzon structure for modify and better understand the Velzon Vue.
1. Velzon Vue Folders
Folder | Path | Uses |
---|---|---|
|
resources/js/ |
All Application Data here. you can add your custom data also |
|
resources/js/ |
All Components here. you can add your custom components also |
|
resources/js/ |
All Helper files. you can add your custom helper also |
|
resources/js/ |
All Language related files. you can add your required language also |
|
resources/js/ |
All Layouts files here. |
|
resources/js/ |
All Application state here. you can added other state also. |
|
resources/js/ |
All View components here. you can added your components also. |
|
resources/js/ |
Firebase Authentication related Code. if you don't have knowledge about this then don't modify it. |
|
resources/js/ |
Localization related Code. if you don't have knowledge about this then don't modify it. |
|
resources/js/ |
Bootsrap imported here. |
2. Velzon Vue Layout Files
File | Path | Uses |
---|---|---|
|
resources/js/Layouts |
Horizontal Layout related code. |
|
resources/js/Layouts |
Main Layout related code. |
|
resources/js/Layouts |
Twocolumn Layout related code. |
|
resources/js/Layouts |
Vertical Layout related code. |
3. Velzon Vue Component Files
File | Path | Uses |
---|---|---|
|
resources/js/Components |
Page title component, you can easily customize it. |
|
resources/js/Components |
Footer component, you can easily customize it. |
|
resources/js/Components |
Menu component, you can easily customize it. |
|
resources/js/Components |
Navbar component, you can easily customize it. |
|
resources/js/Components |
Right Sidebar component, you can easily customize it. |
4. Velzon Vue Auth Files
File | Path | Uses |
---|---|---|
|
resources/js/Pages/Auth |
Confirm password view page code, if you need to customize that you can do from this. |
|
resources/js/Pages/Auth |
Forget Password view page code, if you need to customize that you can do from this. |
|
resources/js/Pages/Auth |
Login view page code, if you need to customize login you can do from this. |
|
resources/js/Pages/Auth |
Registration page view code. |
|
resources/js/Pages/Auth |
Reset password page view code. |
|
resources/js/Pages/Auth |
Two Factor Authentication page view code. |
|
resources/js/Pages/Auth |
Email Verification page view code. |