Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
- Simple, fast routing engine.
- Powerful dependency injection container.
- Multiple back-ends for session and cache storage.
- Expressive, intuitive database ORM.
- Database agnostic schema migrations.
- Robust background job processing.
- Real-time event broadcasting.
Laravel is accessible, powerful, and provides tools required for large, robust applications.
Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
You may also try the Laravel Bootcamp, where you will be guided through building a modern Laravel application from scratch.
If you don't feel like reading, Laracasts can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel Partners program.
- Vehikl
- Tighten Co.
- WebReinvent
- Kirschbaum Development Group
- 64 Robots
- Curotec
- Cyber-Duck
- DevSquad
- Jump24
- Redberry
- Active Logic
- byte5
- OP.GG
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.
In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [email protected]. All security vulnerabilities will be promptly addressed.
The Laravel framework is open-sourced software licensed under the MIT license.
This project is an Admin Dashboard Boilerplate built with:
- Laravel: As the backend framework for handling business logic, database operations, and API endpoints.
- React: For building a dynamic and responsive user interface.
- Next.js: To enable server-side rendering and improved performance for React-based applications.
- Tailwind CSS: For creating sleek and modern UI components with a utility-first CSS framework.
This boilerplate is designed to streamline the development of admin panels, providing essential core functionalities out of the box.
- User Authentication:
- Login, registration, and password recovery.
- Role-based access control.
- API Integration:
- Laravel-powered RESTful APIs for efficient communication between frontend and backend.
- Responsive Design:
- Fully responsive UI with Tailwind CSS for seamless display across devices.
- Reusable Components:
- Pre-built React components for common admin functionalities (e.g., tables, forms, modals).
- Server-side Rendering:
- Enhanced SEO and performance using Next.js SSR.
- Database Integration:
- Eloquent ORM for database operations.
Ensure the following tools are installed on your local machine:
- Node.js (version 18 or higher)
- NPM (Node Package Manager) or Yarn
- PHP (version 8.0 or higher)
- Composer
- MySQL or any other database of your choice
- Laravel Installer
Follow these steps to set up and run the project locally:
git clone <repository-url>
cd admin-dashboard-boilerplate
- Navigate to the Laravel backend directory:
cd backend
- Install Laravel dependencies:
composer install
- Create a
.env
file by copying the example:cp .env.example .env
- Update the
.env
file with your database and other environment configurations. - Generate the application key:
php artisan key:generate
- Run migrations to set up the database:
php artisan migrate
- Start the Laravel server:
php artisan serve
- Navigate to the React/Next.js frontend directory:
cd frontend
- Install frontend dependencies:
npm install # or yarn install
- Start the development server:
npm run dev # or yarn dev
backend/
├── app/
├── bootstrap/
├── config/
├── database/
├── public/
├── resources/
├── routes/
├── storage/
└── tests/
frontend/
├── components/
├── pages/
├── public/
├── styles/
├── utils/
└── tailwind.config.js
- Start Laravel Server:
php artisan serve
- Run Tests:
php artisan test
- Start Development Server:
npm run dev
- Build for Production:
npm run build
- Run Production Server:
npm start
Contributions are welcome! To contribute:
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch-name
). - Commit your changes (
git commit -m 'Add some feature'
). - Push to the branch (
git push origin feature-branch-name
). - Open a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.