DreamsPOS  Agent Banner

Introduction

DreamsPOS - POS & Inventory Management Admin Dashboard Template - Admin Templates Site Templates Live Preview A point of sale admin template can help organize and track inventory in a business. The template includes fields for items, quantities, prices, and descriptions. It also includes fields for customer information, such as name and address. This information can help the business keep track of its inventory and meet customers’ needs.

Requirements

System Overview

The Dream POS template requires a modern web server environment with Symfony 7.0+ framework support, PHP 8.2+ compatibility, essential extensions, and development tools for optimal performance and development experience.

Core Technologies
Backend Framework

Symfony 7.3.7

Frontend Framework

Bootstrap 5.3.8

Programming Language

PHP 8.4

System Requirements
Composer

For dependency management

PHP Extensions

bcmath, ctype, fileinfo, json, mbstring, openssl, pdo, tokenizer, xml

Text Editor

VS Code, Sublime Text, or any code editor

Development Tools
Local Server

XAMPP/WAMP/MAMP

Version Control

Git

Web Browser

Any modern browser

Important Note

Ensure all PHP extensions are enabled in your server configuration. For production deployment, consider using a managed hosting service that supports Symfony 13.x and PHP 8.3+.

Features

Dream POS offers Several powerful Home page and modern interface.

Built-in Applications
  • Bootstrap 5.x used
  • Compatible Browsers: IE8+, Firefox, Safari, Opera, Chrome
  • Font Awesome icons
  • Google Fonts
  • Feather icons
Layout Features
  • Creative Design
  • Fully Responsive
  • Color & Fonts is easily changed
  • W3C Validated Code
  • Easy to Customize

File Structure

Project Overview

The Symfony project follows standard Symfony directory structure with the main application located in dreamspos/symfony/. The application includes all standard Symfony directories for a complete application structure.

dream-pos/
└── symfony/
    ├── assets /
    │   └──  frontend assets /
    │        ├── css /
    │        ├── img /
    │        ├── fonts /
    │        ├── js /
    │        ├── scss /
    │        ├── plugins /
    │        └── app.js /
    │
    ├── bin /
    │   ├── console /
    │   └── phpunit /
    │
    ├── config /
    │   ├── packages /
    │   ├── routes /
    │   ├── bundles.php /
    │   ├── preload.php /
    │   ├── routes.yaml /
    │   └── services.yaml /
    │
    ├── migrations /
    │
    ├── public /
    │
    ├── bulid /
    │   ├── css /
    │   ├── img /
    │   ├── font /
    │   ├── sass /
    │   ├── plugins /
    │   ├── app.js /
    │   └── index.php /
    │     
    │
    ├── src/
    │   ├── Controller /
    │   ├── Entity /
    │   ├── Repository /
    │   ├── Twig /
    │   ├── api.php /
    │   └── Kernel.php /
    │
    ├── templates /
    │   ├── layout /
    │   │   └── base.html.twig  /
    │   └── partials /
    │       ├── body.html.twig /
    │       ├── footer.html.twig /
    │       ├── head-css.html.twig /
    │       ├── horizontal-sidebar.html.twig /
    │       ├── loader.html.twig /
    │       ├── main-wrapper.html.twig /
    │       ├── modal-popup.html.twig /
    │       ├── sidebar.html.twig /
    │       ├── theme-settings.html.twig /
    │       ├── title-meta.html.twig /
    │       ├── topbar.html.twig /
    │       ├── twocolumn-sidebar.html.twig /
    │       ├── vendor-scripts.html.twig /
    │       ├── index.html.twig /
    │       ├── products.html.twig /
    │       ├── customers.html.twig /
    │       └── *.html.twig /
    │  
    ├── tests/
    │   ├── Entity /
    │   ├── Functional /
    │   ├── bootstrap.php /
    │   └── WebTestCase.php/
    │
    ├── env /
    ├── composer.json /
    ├── package.json /
    ├── phpunit.dist.xml /
    ├── symfony.lock /
    ├── vite.config.js /
    ├── compose.yaml /
    ├── compose.override.yaml /
    └── importmap.php /


Symfony Structure

Symfony Template Structure

This file serves as the main layout template using Symfony's Twig templating engine. It provides the common HTML structure and includes partial views for consistent page elements.

Main Layout File

Uses {% include 'partials/...' %} for partial includes and {% block content %}{% endblock %} for content injection.

<!DOCTYPE html>
<html lang="en">

{% include 'partials/theme-settings.html.twig' %}

<head>
    {% include 'partials/title-meta.html.twig' %}
    {% include 'partials/head-css.html.twig' %}
</head>

{% include 'partials/body.html.twig' %}

    <!-- Start Main Wrapper -->
    {% include 'partials/main-wrapper.html.twig' %}

		{% include 'partials/topbar.html.twig' %}
		{% include 'partials/sidebar.html.twig' %}

        {% block content %}{% endblock %}

		{% include 'partials/modal-popup.html.twig' %}
    </div>
    <!-- End Main Wrapper -->

    {% include 'partials/vendor-scripts.html.twig' %}
</body>
</html>
Content Page Template

Each view extends the main layout using {% extends 'layouts/base.html.twig' %} and defines content blocks with {% block content %} the project that extends the main layout

<?php $page = 'blank-page'; ?>
@extends('layout.mainlayout')
@section('content')

    <!-- Page content goes here -->
    <div class="page-wrapper">

        <div class="content">
            <!-- Your page content -->
        </div>

		{% include 'partials/footer.html.twig' %}

    </div>

@endsection

Installation

Symfony Framework Setup

Follow these steps to set up Dream POS Symfony application on your local development environment. This guide covers environment setup, Symfony installation, and configuration.

Prerequisites
PHP 8.2+
Database (MySQL/MariaDB)
Composer
Tip: Install Symfony CLI for better development experience https://symfony.com/download
Installation Steps
1
Project Setup

Extract the Dream POS Symfony project to your web server directory:

XAMPP: htdocs/dreamspos/symfony/
WAMP: www/dreamspos/symfony/
2
Install PHP Dependencies

Open terminal/command prompt in the project root directory and run:

composer install
Note: If "composer install" fails due to memory limit issues, clearing the Symfony cache with more memory, then re-run Composer:
php -d memory_limit=512M bin/console cache:clear
Note: Or fix this permenantly by set composer memory limit globally:
setx COMPOSER_MEMORY_LIMIT -1
3
Start Development Server

Before starting the server, make sure to configure your database connection in .env or .env.local :

symfony server:start
php -S localhost:8000 -t public/
Access the application at: http://localhost:8000
4
Build Frontend Assets

Install Node.js dependencies and build frontend assets:

npm install npm run build
                                                                
Note: This will compile all frontend assets (CSS, JavaScript, images) for production

Fonts

The default font is Inter. To change the font:

Update the @import URL and the --font-family-primary variable in style.css:

	// Font
@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');

	body {
		font-family: "Golos Text", sans-serif;
	}
		

Icons

Use Tabler & Font Awesome icons with spesific class


	<!DOCTYPE html>
	<html lang="en">
		<head>
			<link rel="stylesheet" href="{{ asset('build/plugins/fontawesome/css/fontawesome.min.css') }}">
			<link rel="stylesheet" href="{{ asset('build/plugins/fontawesome/css/all.min.css') }}">
		</head>
	</html>


	<i class="fas fa-times"></i>
	<i class="fas fa-chevron-down"></i>
	<i class="fa-regular fa-user"></i>
	

License

Dream POS is developed by Dreams Technologies and is available under both Envato Extended & Regular License options.

Regular License

Usage by either yourself or a single client is permitted for a single end product, provided that end users are not subject to any charges.

Extended License

For use by you or one client in a single end product for which end users may be charged.

What are the main differences between the Regular License and the Extended License?

Note

If you operate as a freelancer or agency, you have the option to acquire the Extended License, which permits you to utilize the item across multiple projects on behalf of your clients.

Support

Need Support?

If this documentation does not address your questions, please feel free to contact us via email at support@dreamstechnologies.com

Reach the team at GMT+5:30. Typical reply within 12–24 hours on weekdays — rarely up to 48 hrs during holidays. Support is available to verified buyers for template-related issues.

Contact Support

Important Note : We strive to offer top-notch support, but it's only available to verified buyers and for template-related issues such as bugs and errors. Custom changes and third-party module setups are not covered.

Custom Work

Do you need a customized application for your business?

If you need a customized application for your business depends on your specific requirements and goals, Please contact us. Customization can be the key to success, ensuring your project perfectly aligns with your unique goals and requirements.

Don't Miss Out on the Benefits of Customization!

Unlock the potential of your project. It's time to ensure your project isn't another cookie-cutter solution but truly unique and effective one.

Discover how customization can make a difference in your project's success. Let's create a solution that's as unique as your vision!

We'll tailor the application to meet your specific needs and preferences.

We will upload your website to the server and ensure it is live.

thanks

Thank You

Thank you once again for downloading DreamsPOS.
We hope you're enjoying your experience, and we kindly request that you take a moment to share your valuable review and rating with us.

Review Link