Getting Started

Introduction

Veltrix is built with Laravel 7.0 with Laravel Mix provides a clean, fluent API for defining basic webpack build steps for your Laravel application. Mix supports several common CSS and JavaScript pre-processors. We have also added few reusable components which speedup your development.
Note: If you are using single mode ( Dark, Light, RTL ) and dont need right side drawer to change layout then please remove css link from resources/views/layouts/heade.blade.php and also remove js code initSettings(); method is declared inside into init() method in the file resources/js/app.js and run "npm run dev" to compile all assets.
You need to add these css for specific mode which you want to use in your project so there will be no any extra css files will be loaded.

Light
<link href="{{ URL::asset('assets/css/bootstrap.min.css')}}" id="bootstrap-light" rel="stylesheet" type="text/css" />
<link href="{{ URL::asset('assets/css/icons.min.css')}}" rel="stylesheet" type="text/css" />
<link href="{{ URL::asset('assets/css/app.min.css')}}" id="app-light" rel="stylesheet" type="text/css" />
Dark
<link href="{{ URL::asset('assets/css/bootstrap-dark.min.css')}}" id="bootstrap-dark" rel="stylesheet" type="text/css" />
<link href="{{ URL::asset('assets/css/icons.min.css')}}" rel="stylesheet" type="text/css" />
<link href="{{ URL::asset('assets/css/app-dark.min.css')}}" id="app-dark" rel="stylesheet" type="text/css" />
RTL
<link href="{{ URL::asset('assets/css/bootstrap.min.css')}}" id="bootstrap-light" rel="stylesheet" type="text/css" />
<link href="{{ URL::asset('assets/css/icons.min.css')}}" rel="stylesheet" type="text/css" />
<link href="{{ URL::asset('assets/css/app-rtl.min.css')}}" id="app-rtl" rel="stylesheet" type="text/css" />

If you have any questions that are beyond the scope of this documentation, please feel free to email or contact us via our profile page or sent email on themesbrand@gmail.com

Structure

Extract the zip file you received after purchase and you would find the exact below files and folders:

├── app
├── bootstrap
├── config
├── database
├── public
├── resources
    ├── fonts
    ├── images
    ├── js
    ├── lang
    ├── scss
    └── views
├── routes
├── storage
├── .env
├── composer.json
├── composer.lock
├── package-lock.json
├── package.json
├── server.php
└── webpack.mix.js