Dreams Connect Banner

Introduction

Dreams Connect is a modern, responsive social networking dashboard template built with tailwind and designed to create engaging online communities. It includes beautifully crafted pages, feeds, messaging, groups, events, notifications, and community management. Dreams Connect helps you build scalable social networking, community, and collaboration platforms with ease.

Requirements

System Overview

The Dreams Connect 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.21.1

Frontend Framework

Tailwind 4

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+.

Features

Dreams Connect offers 3 powerful dashboard variations and 10+ fully functional, prebuilt application modules with a clean, modular structure.

Prebuilt Applications
  • User Profiles & Social Feeds
  • Real-Time Chat & Group Conversations
  • Communities, Groups & Events
  • Friend Requests, Notifications & Activity Feed
  • Media Sharing, User Management
Layout & Mode Features
  • Multiple Sidebar Layout Options
  • Full responsive design (Mobile, Tablet, Desktop)
  • Built-in Light / Dark Mode Toggle
  • Full RTL Layout Direction Support
  • Layout Direction Variations

File Structure

Project Overview

The Laravel project follows standard Laravel directory structure with the main application located in dreamsconnect/laravel/. The application includes all standard Laravel directories for a complete application structure.

dreamsconnect/
└── laravel/
    ├── app/
    │   ├── Http/
    │   │   ├── Controllers/
    │   │   └── Middleware/
    │   ├── Models/
    │   └── Providers/
    │
    ├── bootstrap/
    │   └── cache/
    │
    ├── config/
    │   ├── app.php
    │   ├── auth.php
    │   └── database.php
    │
    ├── database/
    │   ├── factories/
    │   ├── migrations/
    │   └── seeders/
    │
    ├── public/
    │   ├── index.php
    │   └── build/
    │       ├── css/
    │       ├── img/
    │       ├── js/
    │       └── libs/
    │
    ├── resources/
    │   ├── css/
    │   ├── js/
    │   ├── img/
    │   └── views/
    │       ├── layouts/
    │       ├── partials/
    │       └── pages/
    │
    ├── routes/
    │   ├── web.php
    │   └── api.php
    │
    ├── storage/
    │   ├── app/
    │   ├── framework/
    │   └── logs/
    │
    ├── tests/
    │   └── Feature/
    │
    ├── artisan
    ├── composer.json
    ├── package.json
    └── vite.config.js


Laravel Structure

Laravel Blade Template Structure

Dreams Connect 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:

<!DOCTYPE html>
<html lang="en" class="h-full dark" dir="ltr">

<head>
    @include('partials.head-css')
    @include('partials.title-meta')
</head>

<body class="h-full bg-slate-950 text-slate-100 font-sans overflow-hidden">

    @yield('content')

    @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:

@extends('layout.mainlayout')
@section('content')

	<!-- You page 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)

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

Installation

Laravel Framework Setup

Follow these steps to set up Dreams Connect Laravel application on your local development environment. This guide covers Laravel-specific installation, environment configuration, and project setup.

Prerequisites
Composer
MySQL/SQLite
Web Server (Apache/Nginx)
Tip: Use XAMPP, WAMP, or MAMP for local development
Installation Steps
1
Project Setup

Extract the Dreams Connect Laravel project to your web server directory:

XAMPP: htdocs/dreamsconnect/laravel/
WAMP: www/dreamsconnect/laravel/
2
Install PHP Dependencies

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

composer install
Note: Ensure Composer is installed on your system
3
Install Node.js Dependencies

Install frontend dependencies for SCSS compilation:

npm install
Note: Ensure Node.js and npm are installed on your system
4
Environment Configuration

Configure your Laravel environment:

cp .env.example .env
php artisan key:generate
Configure: Update database settings in .env file
5
Database Setup

Set up your database and run migrations:

php artisan migrate
6
Build Frontend Assets

Compile SCSS and build frontend assets:

npm run build
7
Access Application

Start your web server and access the Laravel application:

php artisan serve
Example URLs:
Artisan Server: http://127.0.0.1:8000
Live Server: yourdomain.com/laravel/public

Fonts

The default typography font for the template is Inter

Open the style file resources/css/style.css


/* Update in the style  */
    font-family: "Inter", sans-serif;

Color System

All theme colors are defined as design tokens under the @theme directive in your resources/css/style.css file. These variables control the look and feel of components:

@theme {
     --color-violet-50: oklch(98.7% .022 95.277);  
    --color-violet-200: oklch(92.4% .12 95.746); 
    --color-violet-400: oklch(82.8% .189 84.429); 
}

Dark Mode

How it Works

Theme switching works by adding or toggling the class="dark" attribute on the root <html> element. The template automatically stores the user's theme selection in their session storage.

1. Attribute Control

To enable dark mode, set the attribute on the root tag:

<html class="dark">
2. Tailwind CSS v4 Integration

In style.css, dark mode uses a custom variant that links the Tailwind dark: modifiers directly to the HTML attribute:

@custom-variant dark (&:where([data-theme="dark"], [data-theme="dark"] *));

You can write responsive layouts by simply adding prefix variants to any tag like dark:bg-dark-900 or dark:text-white.

RTL Support

Dreams Connect supports full Right-to-Left (RTL) reading directions. To change the layout from Left-to-Right (LTR) to RTL:

1. Update the HTML Tag

Simply add the dir="rtl" attribute and appropriate language code to your root tag:

<html lang="ar" dir="rtl">
2. Tailwind RTL Processing

Tailwind CSS automatically transforms positioning utilities (like margins, padding, and flex alignments) using standard logical properties when the dir="rtl" attribute is active.

Icons

Dreams Connect includes multiple popular icon packages ready for use. You can use any of the following icon libraries:

Lucide Icons

Use Lucide icons with the icon-[name] class prefix:

<i data-lucide="check"></i>
<i data-lucide="home"></i>

Default Layout

The default vertical layout with a left sidebar, and center content area.

  • Sidebar: Navigation menu, logo, profile details, and collapsible dropdowns.
  • Responsive: Collapses into an overlay sidebar on tablets and mobile screens automatically.

License

Dreams Connect 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.

Credits & Resources

Dreams Connect is built upon several open-source libraries, frameworks, and typography assets. We appreciate the contribution of the following resources:

Asset Name Official Website URL
Tailwind CSS https://tailwindcss.com/
Vite JS https://vite.dev/
Lucide Icons https://lucide.dev/

Support

If you have any questions or run into issues with the template, feel free to contact us via email at support@dreamstechnologies.com.

Response Time: Typically 12–24 hours on weekdays (GMT+5:30). Support covers template bugs, errors, and standard features. It does not cover custom installations or custom coding changes.

Contact Support

Custom Work

Do you need custom development for your application?

If you need customization, new page integration, feature setups, or database connections, our engineering team can help tailor this template to your precise specifications.

  • Tailoring features to your exact branding and workflow.
  • Deploying the template to your production servers.
  • Integrating backend endpoints and databases.
thanks

Thank You

Thank you for choosing **Dreams Connect**! We hope this template facilitates building your application. We kindly ask you to share your feedback by leaving a rating on ThemeForest.

Leave a Review