Synto - Symfony Tailwind CSS Admin Dashboard Template

Dashboard
Welcome to Synto - Symfony Tailwind CSS Admin Dashboard Template
  • Updated Date : 15/July/2023
  • Created Date : 31/May/2023
  • Author : Spruko
  • Company : Spruko Technologies Private Limited

Thank you for showing interest towards our admin template. Feel free to contact us any time. We have a dedicated team to provide you the best support. If you want any queries open support ticket https://support.spruko.com.

Introduction
Welcome to Synto – Symfony Tailwind CSS Admin Dashboard Template

Synto - Symfony Tailwind CSS Admin Dashboard Template, With these template formats, it's very easy to create a presence and grab someone's attention around the web page Because the template is built using CSS3, Tailwind CSS framework and with Sass. So please before you start working with the template take a quick look on the documentation so that you can easily built your website.

If You Love Our Template Design Please don't forgot to rate it. Thank you so much! 😊

Template Description

Synto is a Symfony Tailwind CSS Admin Dashboard Template using modern and minimal design. It is fully flexible user-friendly and responsive. Synto Modern template is powered with SASS, & Tailwind CSS which looks great on Desktops, Tablets, and Mobile Devices. This Template Includes 130+ Twig Pages . No Need to do hard work for this template customization. We already designed it and you can easily design your website just how you like it. This template is build using Tailwind CSS framework. After Purchased this template you will get All Twig Files, CSS, SCSS and JS Files.

It has super clean flat user interface admin design, easy customizable components and widgets.The Template comes with a awesome unique design also we ensure you can easily design template.

It is a fully responsive layout for all type of devices. Works on all major web browsers, Desktop, iPhone, iPad, Tablet and all other smart phone devices

Once you Purchase Synto Tailwind CSS Admin Dashboard Template, you will be able to get free download of all future updates.

Template Features
Dark Theme Ready RTL Version Boxed Layout
12 Different Dashboards Authentication Pages Error Pages
130+ twig Pages Easy to Customize Tailwind CSS Framework
Form Elements Draggable Cards Ratings
Tabulator JS Notifications Gallery
Apex Charts Chartjs Charts Echarts
Full Calendar Sweet Alerts Swiper JS
Blog Pages Mail App Chat
File Manager Invoice Landing
Pricing Profile Team
24 * 7 Professional Company Support Ecommerce Pages Under Construction Page
Color Theme Support (Primary and Background) Neat, clean and simple design W3C Validated
Switcher Features
Theme Styles
  • Light & Dark Themes
  • LTR & RTL
  • Vertical & Horizontal Navigation Styles
  • Menu Click & Hover Styles
  • Icon Click & Hover Styles
  • Page Regular & Classic Styles
  • Layout Full Width & Boxed
  • Menu Fixed & Scrollable
  • Header Fixed & Scrollable
  • Sidemenu Closed
  • Icon Text Menu
  • Icon Overlay
  • Detached
  • Double Menu
Theme Colors
  • Menu Light
  • Menu Dark
  • Menu Color
  • Menu Gradient
  • Menu Transparent
  • Header Light
  • Header Dark
  • Header Color
  • Header Gradient
  • Header Transparent
  • Theme Primary
  • Theme Background
  • Menu With Background Images
Installation Process of Composer

Note: The clear documentation of PDF is given on How To Run Symfony Project In Localhost - For Beginners. Please Check out the PDF before running the project.

In order to run Symfony we need to install composer by the following steps

Steps to Download & Installation of Composer


Step1: Please visit the Official Web Site of the Composer www.getcomposer.org

Step2: Click on the Download option

Step3: Click on the Composer-Setup.exe you are done with download

Step4: Now Right click on the Composer-Setup.exe file and select Run as administrator click on Yes

Step5: You'll be getting two options click as per your choice

Step6: I choose Recommended option here and if your developer you can check the box of the Developer Mode

Step7: And click on the Next button please make sure of installation path and then click Next

Step8: You'll be asked to enter proxy url please skip the step and click on the Next button

Step9: Please make sure with the PHP Version it should not be less than 8.0v, here we used 8.1.12 Version and then click on the next button

Step10: To confirm that Composer is installed in your system then type Composer in command prompt (if you are using XAMPP then go to C:\xampp\htdocs location and type composer)

Installation Process of Symfony
Here we are using "Composer" to download "Symfony" packages

Note: This installation is shown based on XAMPP server..

1. Open the command prompt and locate the path where XAMPP is installed on your system.

2. Navigate to the directory where you want to install Symfony. For example, if you want to install it in the "htdocs" folder of XAMPP, use the command prompt and go to the path like this: C:\xampp\htdocs>

3. In the command prompt, enter the following command: composer create-project symfony/skeleton my_project and press Enter. This command will download and install the necessary Symfony packages into your chosen folder.

4. Wait for the download process to complete. It may take some time depending on your internet speed.

5. Open the command prompt and navigate to the path of your Symfony project using the cd command. For example, if your project is located at
use the command cd my_project

6. Run the following commands one by one in the command prompt: composer require webapp, composer require symfony/asset
composer require symfony/webpack-encore-bundle

7. To install Tailwind CSS, its dependencies, and the PostCSS loader, run the command: npm install -D tailwindcss postcss postcss-loader autoprefixer

8. Generate the necessary configuration files for Tailwind CSS and PostCSS by running the command: npx tailwindcss init -p


9. Once you are redirected back to the C:\xampp\htdocs> path in the command prompt, the Symfony installation process is complete.

Note: If you have any further questions or need more detailed instructions, please refer to the official Symfony website for more information. Click here

After the installation, you can run the following command to start the Symfony development server for your project:
php -S 127.0.0.1:8000 -t public
The Basic Structure Of Symfony Project
                 
				├── assets
				├── bin
				├── config
				├── migrations 
				├── public 
				├── src  
				├── templates 
				├── tests 
				├── translations
				├── var
				├── vendor
				├── .env
				├── .env.test
				├── .gitignore
				├── composer.json
				├── composer.lock 
				├── package-lock.json
				├── package.json 
				├── phpunit.xml.dist
				├── postcss.config.js
				├── symfony.lock
				├── tailwind.config.js
				└── webpack.config.js
				 
			
How to Use Symfony
In order to use Symfony you need to install Node.js in your system

Recommended LTS (long term support) version of Node.js.

Download latest version of node.js from nodejs.org

Install Node.js using .exe downloaded file.

To check your node version, run node -v in a terminal/console window (cmd)

Now you need to install Node Modules in your project folder

1. Go to your project folder and there you will find a file called package.json.

2. Open the file in your editor and make sure that all the dependencies are correct as shown below

  • "@tailwindcss/forms": "^0.5.3",
  • "copy-webpack-plugin": "^11.0.0",
  • "file-loader": "^6.2.0",
  • "preline": "^1.8.0",
  • "sass": "^1.62.1",
  • "sass-loader": "^13.3.0",
  • "tailwind-clip-path": "^1.0.0"

3. And now set your project root path in terminal or command prompt Example: cd C:\Users\my-project and type the below command line.

npm install

4. Wait until all the dependencies are downloaded to your project folder.

5. Now you can see the downloaded folder with the name of node_modules in your project folder.

6. Once you completed with the customization work you need to run your project in Production Mode in order to run Production Mode run the below command line

npm run build

Assets Folder Structure

			
				├── assets
				|   ├── Controllers
				|   ├── iconfonts
				|   ├── img
				|   ├── js
				|   ├── libs
				|   ├── styles
				|   ├── app.js
				|   ├── bootstrap.js
				|   └── controller.json
				├── bin
				├── config
				├── migrations
				├── public
				|   ├── build
				|   |   ├── fonts
				|   |   ├── iconfonts
				|   |   ├── images
				|   |   ├── img
				|   |   ├── js
				|   |   ├── libs
				├── src
				|   ├── Controller
				|   |   ├── 130+ Controller.php
				├── templates
				|   ├── 130+ Twig Pages
				|   ├── layouts
				|   ├── base.html.twig
				|   ├── custom-base.html.twig
				|   ├── custom-base2.html.twig
				|   └── landing-base.html.twig
				
			
	
Over All Folder Structure
       
						├── assets
						|   ├── Controllers
						|   ├── iconfonts
						|   ├── img
						|   ├── js
						|   ├── libs
						|   ├── styles
						|   ├── app.js
						|   ├── bootstrap.js
						|   └── controller.json
						├── bin
						├── config
						├── migrations
						├── public
						├── src
						|   ├── Controller
						|   |   ├── 130+ Controller.php
						├── templates
						|   ├── 130+ Twig Pages
						|   ├── layouts
						|   |   ├── custom-scripts.html.twig
						|   |   ├── custom-styles.html.twig
						|   |   ├── footer.html.twig
						|   |   ├── header.html.twig
						|   |   ├── header1.html.twig
						|   |   ├── landing-alerts.html.twig
						|   |   ├── landing-footer.html.twig
						|   |   ├── landing-header.html.twig
						|   |   ├── landing-header1.html.twig
						|   |   ├── landing-scripts.html.twig
						|   |   ├── landing-sidebar.html.twig
						|   |   ├── landing-sidebar1.html.twig
						|   |   ├── landing-styles.html.twig
						|   |   ├── landing-switcher.html.twig
						|   |   ├── scripts.html.twig
						|   |   ├── search-modal.html.twig
						|   |   ├── sidebar.html.twig
						|   |   ├── styles.html.twig
						|   |   └── switcher.html.twig
						|   ├── base.html.twig
						|   ├── custom-base.html.twig
						|   ├── custom-base2.html.twig
						|   └── landing-base.html.twig
						├── tests
						├── translations
						├── var
						├── vendor
						├── .env
						├── .env.test
						├── .gitignore
						├── composer.json
						├── composer.lock
						├── package-lock.json
						├── package.json
						├── phpunit.xml.dist
						├── postcss.config.js
						├── symfony.lock
						├── tailwind.config.js
						└── webpack.config.js
					
		
Purpose of a Starter Kit
Introduction to the Symfony Template Starter Kit:

The Symfony template starter kit is a resource that helps developers kickstart their Symfony web development projects by providing a preconfigured and ready-to-use template. It aims to simplify the initial setup and provide a foundation for building Symfony-based websites or applications.

Purpose of the Symfony Template Starter Kit:

The purpose of the Symfony template starter kit is to save developers time and effort by offering a set of prebuilt files and configurations commonly used in Symfony projects. Instead of starting from scratch, developers can leverage the starter kit to quickly set up a project structure that adheres to best practices and industry standards.

Benefits of Using the Symfony Template Starter Kit:

The starter kit eliminates the need to set up the basic project structure manually. It provides a well-organized file and folder structure, including commonly used directories for separating code, templates, assets, and configuration files. This allows developers to focus more on implementing business logic rather than spending time on initial setup.
Before using the Symfony template starter kit, developers should have a basic understanding of Symfony and web development concepts. Additionally, they should have a web server environment Symfony installed on their local machines or a hosting server. Familiarity with HTML, CSS, and JavaScript is also beneficial for frontend development aspects.

Starterkit Overview

You can use the Starterkit if you are creating a new project. It will be time-consuming to use the full admin version for a new project as Synto have more than 130 html.twig pages.

We have provided all the pre-build layouts like Sidemenu, Header, Footer and Scripts etc in the Starterkit.

For further information or support regarding the template, please contact us using the provided link.

https://support.spruko.com/
Starterkit Folder Structure
   		
					├── assets
					|   ├── Controllers
					|   ├── iconfonts
					|   ├── img
					|   ├── js
					|   ├── libs
					|   ├── styles
					|   ├── app.js
					|   ├── bootstrap.js
					|   └── controller.json
					├── bin
					├── config
					├── migrations
					├── public
					├── src
					|   ├── Controller
					|   |   ├── Controller.php
					├── templates
					|   ├──  Twig Pages
					|   ├── layouts
					|   |   ├── footer.html.twig
					|   |   ├── header.html.twig
					|   |   ├── header1.html.twig
					|   |   ├── scripts.html.twig
					|   |   ├── search-modal.html.twig
					|   |   ├── sidebar.html.twig
					|   |   ├── styles.html.twig
					|   |   └── switcher.html.twig
					|   └── base.html.twig
					├── tests
					├── translations
					├── var
					├── vendor
					├── .env
					├── .env.test
					├── .gitignore
					├── composer.json
					├── composer.lock
					├── package-lock.json
					├── package.json
					├── phpunit.xml.dist
					├── postcss.config.js
					├── symfony.lock
					├── tailwind.config.js
					└── webpack.config.js
										
									
  • Take a look at the folder structure of the "Starterkit."
  • Integration of your customized html.twig pages becomes easy when using the "Starterkit."
  • The "Starterkit" provides all the layouts related assets.
  • To explore the contents of the "Starterkit," unzip the project folder received after purchase.
  • Navigate to the following paths:
  • Example: templates/layouts - This folder contains files such as footer.html.twig, header.html.twig, scripts.html.twig, and sidebar.html.twig, etc.
  • Example: templates/ - Add your html.twig pages here if you have more.
How to Run Symfony Project in localhost

If you have installed XAMPP on your machine then please follow the below steps

Step:1 Quick view of Installations

1. Download and Install the Composer from official site https://getcomposer.org/

2. Install Symfony by using Composer as mentioned in the installation process above.

Step:2 Run project

1. Extract the zip folder of the Symfony project in the path: EX: C:\xampp\htdocs\ that you have received after purchase.

2. Once the extraction is completed for accessing the Symfony project, open command prompt or terminal and set your project root path: Example: C:\xampp\htdocs\

3. Now run the below commands in the terminal to get the output of the project.

  • npm install to get the node_modules install.
  • npm run build to get the build assets of the project.
  • Finally, run the command line: php -S 127.0.0.1:8000 -t public to get the Symfony development server. so that you can see the output of the project.
  • Symfony development server started: http://127.0.0.1:8000, now type the url in the browser to access the project.

  • Note: Please run npm install and npm run build commands before you run the development server or project.

Versions
  • PHP : "^8.1.12",
  • Composer : "^2.5.4",
  • Symfony/Framework : "^6.2.10",
SWITCHER?

If you want to remove switcher to your template follow the below process.

FAQ'S

1) How to Change Font Style ?

Step 1:

Go To _fonts.scss (assets/styles/scss/style.scss )

if you want to change another font-family Go to the site Google Fonts And Select One font Family and import In to style.css file

How to Select font Family

Example:

Step 2:

And paste Your Selected font-family in _style.scss

Example:

Step 3:

And add the Your Selected font-family in tailwind config file inplace of old font

Example:

	fontFamily: {
		inter: ["Inter", "sans-serif"], //place your font here
	}

	
Step 4:

And add the Your Selected font-family to body that is font-inter in custom.scss file (rootpath :- assets/styles/scss/tailwind/_custom.scss) file inplace of old font

Example:

	body {
		@apply bg-bodybg h-full text-gray-600 dark:text-white m-0 font-inter font-normal text-sm relative;
	}

	

Note : After Changing styles you must run the command i.e, npm run dev.

2) How to Change Logo ?

Go To "assets/img/brand" folder and replace your logo with Previous Logos within in image size. note: Please don't increase logo sizes. Replace your logo within given image size. otherwise the logo will not fit in particular place it disturbs the template design.

3) How to Change Menu icons ?

By default menu icons are Remix Icons if you want to change icons please follow below steps
Step 1 :

To change Menu icons, templates/layouts/sidebar.html.twig page open and go through sidebar section, in that section you will find Remix Icons of menu in i tag, there you can replace previous icon with your icon. Example as shown in below

			
				
				
			
Switcher Styles

Theme Styles

  
	
	
Attribute Description
class="light" To set the light theme
class="dark" To set the Dark theme
dir="ltr" To set LTR version default
dir="rtl" To set LTR version to RTL version
data-nav-layout="vertical" To set menu layout to vertical
data-nav-layout="horizontal" data-nav-style="menu-click" To set menu layout to horizontal
data-nav-style="menu-click" data-toggled="menu-click-closed" To set navigation style to menu click - *Works same for both vertical and horizontal
data-nav-style="menu-hover" data-toggled="menu-hover-closed" To set navigation style to menu hover - *Works same for both vertical and horizontal
data-nav-style="icon-click" data-toggled="icon-click-closed" To set navigation style to icon click - *Works same for both vertical and horizontal
data-nav-style="icon-hover" data-toggled="icon-hover-closed" To set navigation style to icon hover - *Works same for both vertical and horizontal
data-page-style="regular" To set page style to Default
data-page-style="classic" To set page style to Classic
data-width="fullwidth" To set page width to Full Width
data-width="boxed" To set page width to Boxed
data-menu-position="fixed" To set menu position Fixed
data-menu-position="scrollable" To set menu position Scrollable
data-header-position="fixed" To set header position Fixed
data-header-position="scrollable" To set header position Scrollable
data-vertical-style="closed" data-toggled="closed-menu-close" To set sidemenu layout style Closed - *Does not work for horizontal
data-vertical-style="icontext" data-toggled="icon-text-close" To set sidemenu layout style Icon Text - *Does not work for horizontal
data-vertical-style="overlay" data-toggled="icon-overlay-close" To set sidemenu layout style Icon Overlay - *Does not work for horizontal
data-vertical-style="detached" data-toggled="detached-close" To set sidemenu layout style Detached - *Does not work for horizontal
data-vertical-style="doublemenu" data-toggled="double-menu-open" To set sidemenu layout style Double Menu - *Does not work for horizontal

Theme Colors

  
		
	
Attribute Description
data-menu-styles="light" To set the menu style to light
data-menu-styles="dark" To set the menu style to dark
data-menu-styles="color" To set the menu style to color
data-menu-styles="gradient" To set the menu style to gradient
data-menu-styles="transparent" To set the menu style to transparent
data-header-styles="light" To set the header style to light
data-header-styles="dark" To set the header style to dark
data-header-styles="color" To set the header style to color
data-header-styles="gradient" To set the header style to gradient
data-header-styles="transparent" To set the header style to transparent
bg-img="bgimg1" To set menu background image1
bg-img="bgimg2" To set menu background image2
bg-img="bgimg3" To set menu background image3
bg-img="bgimg4" To set menu background image4
bg-img="bgimg5" To set menu background image5
Local Storage

How to clear LocalStorage (cookie)?

Step1:

Open custom-switcher.js file assets/styles/js/custom-switcher.js

To clear LocalStorage loading functions you need to remove localStorageBackup() function in custom-switcher.js as shown below


		
			function localStorageBackup() {

			}
		
		
Step2:

To remove complete LocalStorage saving you need to remove all localstorage related calling functions in custom-switcher.js assets/styles/js/custom-switcher.js files.

LocalStorage related functions like localStorage.setItem, localStorage.removeItem, localStorage.getItem, localStorage.clear. Below are the some examples to find out.


				localStorage.setItem( );
				localStorage.removeItem( );
				localStorage.getItem( )
				localStorage.clear();
				localStorageBackup();
		
Primary Color

How to Change Primary Color?

Please follow the below steps to change Primary Color
Step 1 :

To change Primary Color you have to open _variables.scss file and replace what color you want as shown in below

Rootpath : _variables.scss (assets/styles/scss/_variables.scss )

Note : After Changing styles you must run the command i.e, npm run dev.

Dark Theme Style

If you want to change Dark Theme color you need to follow the below process.

How to Change Dark body Color?

Please follow the below steps to change Dark body Color
Step 1 :

To change Dark body Color you have to open _variables.scss file and replace what color you want as shown in below

Rootpath : _variables.scss (assets/styles/scss/_variables.scss )

Note : After Changing styles you must run the command i.e, npm run dev.

Sources

All plugins runs through npm.

If you want new plugins : Install new plugin from npm then run npm run dev command.

THANK YOU!