https://github.com/maskedalkindi/larvel-dashboard-mockup
This project is a robust Laravel template designed for quick and efficient web development. Featuring built-in user authentication (login and registration) and a variety of integrated theme designs, it's the perfect kickstarter for Laravel development. The template is pre-configured with Tailwind CSS and DaisyUI components.
https://github.com/maskedalkindi/larvel-dashboard-mockup
daisy daisyui larvel larvel-10 larvel-framework mysql mysql-database
Last synced: about 1 month ago
JSON representation
This project is a robust Laravel template designed for quick and efficient web development. Featuring built-in user authentication (login and registration) and a variety of integrated theme designs, it's the perfect kickstarter for Laravel development. The template is pre-configured with Tailwind CSS and DaisyUI components.
- Host: GitHub
- URL: https://github.com/maskedalkindi/larvel-dashboard-mockup
- Owner: MaskedAlkindi
- Created: 2023-12-07T13:38:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-07T13:46:17.000Z (over 1 year ago)
- Last Synced: 2025-02-05T00:27:34.233Z (3 months ago)
- Topics: daisy, daisyui, larvel, larvel-10, larvel-framework, mysql, mysql-database
- Language: PHP
- Homepage:
- Size: 640 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Laravel Dashboard Template
## Project Overview
> Developed by Hajid Alkindi## Introduction
This project is a robust Laravel template designed for quick and efficient web development. Featuring built-in user authentication (login and registration) and a variety of integrated theme designs, it's the perfect kickstarter for Laravel development. The template is pre-configured with Tailwind CSS and DaisyUI components, making it both functional and visually appealing.## Visual Features
### Authentication Pages
- **Login Screen:** A user-friendly interface for signing in.

- **Registration Screen:** An intuitive layout for new user registration.

### Theme Variations
Explore diverse themes to enhance the user interface. Each theme is designed with attention to detail and usability:
- Dark Theme

- Halloween Theme

- Coffee Theme

- Cyberpunk Theme

- Black Theme
For more information on themes and customization options, visit the [DaisyUI Themes Documentation](https://daisyui.com/docs/themes/).
## System Requirements
- PHP version 7.3 or higher
- MySQL or PostgreSQL database
- Essential dependencies as specified in the project documentation.## Installation Instructions
### Pre-installation Setup
Before proceeding, ensure you have XAMPP installed to create a local web server environment. Download it from [XAMPP's official website](https://www.apachefriends.org/index.html) and follow the installation instructions.### Cloning the Repository
Initiate by cloning the repository:
```bash
git clone https://github.com/MaskedAlkindi/Larvel-Dashboard-Mockup.gitcd Larvel-Dashboard-Mockup/Dashboard
```### Dependency Installation
To install necessary dependencies:
```bash
composer install
npm install
```### Environment Setup
Configure the environment file:
```bash
cp .env.example .env
```
Edit the .env file to match your local environment settings, particularly the database connection details (DB_DATABASE, DB_USERNAME, DB_PASSWORD).#### .env
```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
```### Application Key
Generate a unique key for the application:
```bash
php artisan key:generate
```### Database Migration and Seeding
Prepare your database:
```bash
php artisan migrate --seed
```### Running the Application
Start the Laravel application and compile assets:
```bash
php artisan serve
npm run dev
```This comprehensive guide ensures a smooth setup and deployment of your Laravel Dashboard Template.