Truelysell - Truelysell & 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.
System Overview
The Truelysell template requires a modern Laravel development environment with PHP 8.3+ support, essential extensions, and development tools for optimal performance and development experience.
Core Technologies
Backend Framework
Laravel 13.8.0
Frontend Framework
Bootstrap 5.3.8
Programming Language
PHP 8.4
System Requirements
Composer
For PHP package dependency management
PHP Extensions
bcmath, ctype, fileinfo, json, mbstring, openssl, pdo, tokenizer, xml
Node.js
For Vite build process & SCSS compilation
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 Laravel 13.x and PHP 8.3+.
Truelysell 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
- Scss Used
- Feather icons
Layout Features
- Creative Design
- Fully Responsive
- Color & Fonts is easily changed
- W3C Validated Code
- Easy to Customize
Project Overview
The Laravel project follows standard Laravel directory structure
with the main applications located in truelysell/laravel/admin/ and truelysell/laravel/frontend/. The frontend application includes all
standard Laravel directories such as app, bootstrap, config, database, public, resources, routes, storage, and tests for a complete application structure.
truelysell/
└── laravel/
└── admin/
└── frontend/
├── app/
│ ├── Http/
│ │ ├── Controllers/
│ │ └── Middleware/
│ ├── Models/
│ └── Providers/
│
├── bootstrap/
│ └── cache/
│
├── config/
│ ├── app.php
│ ├── auth.php
│ └── database.php
│
├── database/
│ ├── factories/
│ ├── migrations/
│ └── seeders/
│
├── public/
│ ├── index.php
│ └── build/
│ ├── css/
│ ├── fonts/
│ ├── img/
│ ├── js/
│ ├── json/
│ ├── plugins/
│ └── scss/
│
├── resources/
│ ├── css/
│ ├── fonts/
│ ├── img/
│ ├── js/
│ ├── json/
│ ├── plugins/
│ ├── scss/
│ └── views/
│ ├── layouts/
│ ├── partials/
│ └── pages/
│
├── routes/
│ ├── web.php
│ └── api.php
│
├── storage/
│ ├── app/
│ ├── framework/
│ └── logs/
│
├── tests/
│ └── Feature/
│
├── .env.example
├── artisan
├── composer.json
├── package.json
└── vite.config.js
Laravel Blade Template Structure
Truelysell uses Laravel's Blade templating engine with a master layout file and individual page templates for consistent design and functionality. Below are the actual files from the project.
Main Layout File
This is the actual master layout file from the project that provides the common HTML structure, navigation, and scripts for all pages:
<html lang="en">
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
@if (Route::is(['booking', 'create-service', 'index', 'index-2', 'index-3', 'index-4', 'index-5', 'index-6', 'index-7', 'index-8', 'index-9', 'index-10', 'index-11', 'index-12', 'provider-details', 'providers', 'service-details', 'service-details2']))
<title>Truelysell - Service Marketplace Template</title>
@else
<title>Truelysell</title>
@endif
<meta name="description" content="TruelySell is a modern service marketplace template with booking, provider, and admin dashboards. Manage services, payments, and analytics with ease.">
<meta name="keywords" content="service marketplace, booking dashboard, provider panel, admin template, freelance system, laravel dashboard, react template, angular admin, vuejs marketplace, html booking system">
@include('partials.head-css')
</head>
<body>
<!-- Start Main Wrapper -->
@include('partials.main-wrapper')
@include('partials.topbar')
@include('partials.sidebar')
@yield('content')
@include('partials.footer')
</div>
<!-- End Main Wrapper -->
@component('components.backtotop')
@endcomponent
@component('components.cursor')
@endcomponent
@component('components.modal-popup')
@endcomponent
@include('partials.vendor-scripts')
</body>
</html>
Sample Page Template
This is the actual starter page template from the project that extends the main layout:
<?php $page = 'blank-page'; ?>
@extends('layout.mainlayout')
@section('content')
@component('components.breadcrumb')
@slot('title')
Blank Page
@endslot
@slot('item1')
Home
@endslot
@slot('item2')
Blank Page
@endslot
@endcomponent
<!-- Start Content -->
<div class="content">
<!-- Your Page Content Goes Here -->
</div>
<!-- End Content -->
@endsection
Key Blade Template Features
Template Inheritance
@extends directive for master layout structure
Content Sections
@section and @yield for dynamic content injection
Partial Includes
@include directive for reusable partials (topbar, sidebar, footer)
Route Conditions
@if Route::is() for conditional layout rendering
Component System
@component directive for modal popup components
PHP Variables
PHP variables for page identification and routing
Laravel Framework Setup
Follow these steps to set up Truelysell Laravel application on your local development environment. This guide covers Laravel-specific installation, environment configuration, and project setup.
Prerequisites
Installation Steps
Project Setup
Extract the Truelysell Laravel project to your web server directory:
Install PHP Dependencies
Open terminal/command prompt in the Laravel project directory and run:
composer install
Install Node.js Dependencies
Install frontend dependencies for SCSS compilation:
npm install
Environment Configuration
Configure your Laravel environment:
cp .env.example .env
php artisan key:generate
Database Setup
Set up your database and run migrations:
php artisan migrate
Build Frontend Assets
Compile SCSS and build frontend assets:
npm run build
Access Application
Start your web server and access the Laravel application:
php artisan serve
http://127.0.0.1:8000
yourdomain.com/laravel/frontend/public
The default font is Archivo. To change the font:
Update the @import URL and the
--font-family-primary variable in style.css:
// Font Import
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
body {
// Font Family
$font-family-primary: "Archivo", sans-serif;
}
Use Isax & Tabler Icons with specific class
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Tabler Icons CSS -->
<link rel="stylesheet" href="{{URL::asset('build/plugins/tabler-icons/tabler-icons.css')}}">
<!-- Isax css -->
<link rel="stylesheet" href="{{URL::asset('build/css/iconsax.css')}}">
</head>
</html>
<i class="isax isax-user"></i>
<i class="isax isax-shopping-cart5"></i>
<i class="ti ti-chevrons-right"></i>
Truelysell 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?
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.
| NAME | URL |
|---|---|
| Bootstrap | https://getbootstrap.com/docs/ |
| jQuery | https://jquery.com/ |
| Fontawesome | https://fontawesome.com/ |
| Select2 | https://github.com/select2/select2 |
| Date Timepicker | https://cdnjs.com/libraries/jquery-datetimepicker |
| Google Fonts | https://fonts.google.com/ |
| Fancy Box | http://fancybox.net/ |
| Moment JS | https://momentjs.com/ |
| theia-sticky-sidebar | https://github.com/WeCodePixels/theia-sticky-sidebar |
| Range-Slider | https://ionicframework.com/docs/api/range |
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 SupportImportant 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.
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.
Thank You
Thank you once again for downloading Truelysell.
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.
