Skip to content
On this page

Customization

In project used Vue.js as frontend framework. You can find all frontend code in resources/assets/js folder. Also used Tailwind CSS as CSS framework. You can find all CSS code in resources/assets/css folder.

Frontend development

To install dependencies run (using yarn):

bash
yarn install

To build frontend run:

bash
yarn run dev

To build frontend for production run:

bash
yarn run prod

Application name

To change application name you need to update APP_NAME variable in .env file.

To change logo you need to update resources/js/Components/ApplicationLogo.vue file.

Primary color

To change primary color you need to open Tailwind config file tailwind.config.js in root folder and change primary color. (JSON object path: theme.extend.colors.primary)