
A basic and simple admin panel for Laravel projects.
The content is a guide for installing a Laravel admin panel theme called "Basic Laravel Admin Panel" which is built using Laravel, Laravel Breeze, spatie/laravel-permission, Tailwind CSS, and daisyUI. The installation guide provides instructions for installing the theme with Docker Desktop or without Docker Desktop. It also includes information on Super Admin Login, Admin configuration, and other related topics.
To install the Basic Laravel Admin Panel theme using Docker Desktop, follow these steps:
docker run --rm -v "$(pwd)":/opt -w /opt laravelsail/php82-composer:latest bash -c "composer create-project balajidharma/basic-laravel-admin-panel admin-app && cd admin-app && php artisan sail:install --with=mysql,redis,meilisearch,mailpit,selenium"
cd admin-app
./vendor/bin/sail pull mysql redis meilisearch mailpit selenium
./vendor/bin/sail build
./vendor/bin/sail up
./vendor/bin/sail npm install
./vendor/bin/sail npm run dev
./vendor/bin/sail artisan vendor:publish --provider="BalajiDharma\LaravelAdminCore\AdminCoreServiceProvider"
./vendor/bin/sail artisan vendor:publish --provider="BalajiDharma\LaravelMenu\MenuServiceProvider"
./vendor/bin/sail artisan migrate --seed --seeder=AdminCoreSeeder
To install the Basic Laravel Admin Panel theme without using Docker Desktop, follow these steps:
composer create-project balajidharma/basic-laravel-admin-panel admin-app
cd admin-app
php artisan vendor:publish --provider="BalajiDharma\LaravelAdminCore\AdminCoreServiceProvider"
php artisan vendor:publish --provider="BalajiDharma\LaravelMenu\MenuServiceProvider"
php artisan migrate --seed --seeder=AdminCoreSeeder
npm install
npm run dev
php artisan serve
This content provides a detailed guide for installing the Basic Laravel Admin Panel theme. It covers the installation process with Docker Desktop and without Docker Desktop. It also includes information on the theme's features, such as Laravel, Laravel Breeze, spatie/laravel-permission, Tailwind CSS, and daisyUI. The guide also mentions Super Admin Login and Admin configuration options. Overall, it serves as a comprehensive resource for anyone looking to install and use the Basic Laravel Admin Panel theme.

Laravel is a powerful and elegant PHP framework that provides developers with a comprehensive set of tools and features to build robust web applications. It follows the Model-View-Controller (MVC) architectural pattern, offering a clean and organized structure for writing efficient and maintainable code.
Vite is a build tool that aims to provide a faster and leaner development experience for modern web projects
SCSS is a preprocessor scripting language that extends the capabilities of CSS by adding features such as variables, nesting, and mixins. It allows developers to write more efficient and maintainable CSS code, and helps to streamline the development process by reducing repetition and increasing reusability.
Tailwind CSS is a utility-first CSS framework that provides pre-defined classes for building responsive and customizable user interfaces.
Alpine.js is a lightweight JavaScript framework that simplifies the process of creating dynamic, reactive user interfaces on the web. It uses a declarative syntax that offers a higher level of abstraction compared to vanilla JavaScript, while being more performant and easier to use than jQuery.
daisyUI adds classes to Tailwind CSS for all common UI components. Classes like btn, card, etc. This allows us to focus on important things instead of making basic elements for every project.
A dashboard style website template is a pre-designed layout that features a user interface resembling a control panel or dashboard. It typically includes charts, graphs, tables, and other data visualization tools that allow users to monitor and analyze data in real-time.
PostCSS is a popular open-source tool that enables web developers to transform CSS styles with JavaScript plugins. It allows for efficient processing of CSS styles, from applying vendor prefixes to improving browser compatibility, ultimately resulting in cleaner, faster, and more maintainable code.