A Laravel-based dashboard starter using the Mazer theme, featuring built-in roles (Manager, Admin, Basic User) and provides an intuitive settings interface for application configuration.
- Mazer Dashboard UI: Clean and modern dashboard interface.
- Role Management: Pre-configured roles (Manager, Admin, Basic User).
- Customizable Settings: Easily modify and extend settings to fit your application's needs.
- User Authentication: Basic authentication system with role-based access control.
- Laravel Framework: Built on Laravel, offering the full power of the framework's features.
-
Clone the repository:
git clone https://github.com/fachryluid/laravel-mazer-dashboard-starter.git cd your-repository
-
Install dependencies:
composer install
-
Setup environment variables:
cp .env.example .env
-
Generate application key:
php artisan key:generate
-
Create storage symlink:
php artisan storage:link
-
Run migrations:
php artisan migrate
-
Run seeders:
php artisan db:seed
-
Run the development server:
php artisan serve
After running the seeders, you can log in with the following default credentials:
-
Admin:
- Username: admin
- Password: admin
-
Manager:
- Username: manager
- Password: manager
You can modify these credentials later in the database, seeder or via the dashboard.
This project is licensed under the MIT License.
You are free to use, modify, and distribute the code under the terms of the MIT License. However, the software is provided "as is", without any warranties or guarantees. For more detailed information, please read the LICENSE file.