rpsohag/laravel-dashboard

Full featured Laravel admin dashboard package

Installs: 22

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:Blade

Type:package

pkg:composer/rpsohag/laravel-dashboard

v1.0.2 2025-08-27 17:18 UTC

This package is auto-updated.

Last update: 2025-11-27 18:07:52 UTC


README

A modern, feature-rich dashboard package for Laravel applications that provides a clean and intuitive administrative interface.

Features

  • 🎨 Modern and responsive design
  • 🚀 Easy installation and setup
  • 🔧 Highly customizable components
  • 📊 Built-in analytics and metrics
  • 🔐 Authentication and authorization
  • 📱 Mobile-friendly interface
  • ⚡ Performance optimized
  • 🛠️ Extensible architecture

Requirements

  • PHP 8.1 or higher
  • Laravel 11.0 or higher
  • MySQL 5.7+ / PostgreSQL 10+ / SQLite 3.8+

Installation

Install the package via Composer:

composer require rpsohag/laravel-dashboard

Publish Configuration

Publish the configuration file and assets:

php artisan vendor:publish --tag="laravel-dashboard"

Basic Setup

After installation, the dashboard will be available at /dashboard (or your configured route prefix).

Custom Routes

If you want to customize routes, add them to your application's bootstrap:

// bootstrap/app.php
->withRouting(
    web: __DIR__.'/../routes/web.php',
    commands: __DIR__.'/../routes/console.php',
    health: '/up',
    then: function () {
        Route::middleware('web')
            ->group(base_path('routes/dashboard.php'));
    },
)

Changelog

Please see CHANGELOG.md for more information on what has changed recently.

Security

If you discover any security vulnerabilities, please send an email to rpsohag.bd@gmail.com instead of using the issue tracker.

Support

Credits

License

This software is released under the MIT License.

© 2025 RP SOHAG. All rights reserved.