ahsan-ul-alam/laravel-bisbond

Laravel regional business toolkit with dashboard, Bangla formatting, invoice settings, and system explorer.

Maintainers

Package info

github.com/ahsan-ul-alam/laravel-bisbond

Language:Blade

pkg:composer/ahsan-ul-alam/laravel-bisbond

Statistics

Installs: 3

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

v1.1.0 2026-04-06 20:58 UTC

This package is auto-updated.

Last update: 2026-04-06 23:02:53 UTC


README

πŸš€ Laravel Bisbond

A powerful, dashboard-first regional business toolkit for Laravel applications.

Packagist Version Downloads License Laravel PHP

#Documentation: https://tinyurl.com/bisbond

🎯 Install once β†’ Open /bisbond β†’ Configure everything from the dashboard.

Laravel Bisbond provides a centralized admin panel to manage business settings, Bangla formatting, invoice system, SMS configuration, modules, system health, routes, commands, and future payment integrations β€” all from one place.

πŸ“‹ Table of Contents

πŸ’‘ Why Laravel Bisbond?

In most Laravel projects, developers juggle multiple packages to handle business settings, invoices, SMS, payments, and regional formatting β€” each with their own setup steps.

Laravel Bisbond solves this by giving you a single, unified dashboard:

Without Bisbond With Bisbond
Multiple packages One install
Manual config files Dashboard UI
No regional support Built-in Bangla formatting
Scattered settings Centralized control
No health checks Smart status detection

✨ Features

🧠 Dashboard Control Center

  • Central dashboard accessible at /bisbond
  • Real-time system health overview
  • Quick-action shortcuts for all configurations
  • Clean, modern UI built with Blade + Tailwind CSS

βš™οΈ Smart Settings System

  • Database-driven configuration with dot-notation access
  • Automatic caching for performance
  • Fallback to config file when DB value is absent
bisbond_setting('general.business_name');
bisbond_setting('invoice.prefix');

πŸ“Š Configuration Health Check

Automatically detects and reports setup issues:

Status Example
βœ… OK Business Name Configured
βœ… OK Invoice Module Ready
❌ Error Missing Payment Config

Each issue includes a status, message, suggestion, and a direct action link.

🧩 Module System

Dynamically enable or disable features without touching code:

bisbond_module('invoice'); // true / false
bisbond_module('sms');

Available modules: formatter Β· invoice Β· sms Β· payments (future)

πŸ‡§πŸ‡© Bangla Formatter

Built-in helpers for Bangladeshi applications:

bn_digits(1234);    // ১২৩ΰ§ͺ
bn_money(1500);     // ৳১,৫০০.০০
bn_date(now());     // ΰ§­ এΰ¦ͺ্রিল ২০২৬

🧾 Invoice System

  • Live invoice preview in the dashboard
  • Uses settings (prefix, footer, business info) automatically
  • Bangla-formatted monetary values
  • Ready for PDF export extension

πŸ“© SMS Configuration

Configure SMS providers and templates from the dashboard:

  • Providers: API key, Sender ID, Provider name
  • Templates: OTP, Order Confirmation, Payment Success
  • Placeholders: {name} Β· {otp} Β· {amount} Β· {invoice_no}

πŸ’³ Payment System (Architecture Ready)

Provider/adapter pattern designed for:

bKash Β· Nagad Β· SSLCommerz Β· Rocket Β· Manual Payment

πŸ” Route & Command Explorer

  • Browse all package routes (URI, Method, Name, Controller)
  • List all available Artisan commands at a glance

πŸ“¦ Installation

1. Require the package

composer require ahsan-ul-alam/laravel-bisbond

2. Run the installer

php artisan bisbond:install

3. Open the dashboard

http://your-app.test/bisbond

That's it. No complex setup steps.

βš™οΈ Configuration

All settings are managed through the dashboard UI at /bisbond. The available settings are:

Group Settings
General Business Name, Phone, Currency, Locale
Invoice Invoice Prefix, Footer Note
SMS Provider, API Key, Sender ID, Templates
Modules Enable / Disable individual features

To re-publish the config file:

php artisan vendor:publish --tag=bisbond-config --force

To update the package:

composer update ahsan-ul-alam/laravel-bisbond
php artisan optimize:clear
php artisan migrate

πŸ“Œ Helper Functions

// Settings
bisbond_setting('general.business_name');
bisbond_setting('invoice.prefix');

// Modules
bisbond_module('invoice');   // bool
bisbond_module('sms');       // bool

// Bangla Formatting
bn_digits(1234);             // ১২৩ΰ§ͺ
bn_money(1500);              // ৳১,৫০০.০০
bn_date(now());              // ΰ§­ এΰ¦ͺ্রিল ২০২৬

🧱 Architecture

src/
β”œβ”€β”€ Console/           # Artisan commands (bisbond:install)
β”œβ”€β”€ Facades/           # BisbondManager facade
β”œβ”€β”€ Helpers/           # Global helper functions
β”œβ”€β”€ Http/
β”‚   └── Controllers/   # Dashboard & module controllers
β”œβ”€β”€ Models/            # BisbondSetting model
β”œβ”€β”€ Services/
β”‚   β”œβ”€β”€ SettingService.php        # Settings read/write/cache
β”‚   β”œβ”€β”€ BisbondHealthService.php  # System health checks
β”‚   └── BisbondManager.php        # Core access layer
└── Support/           # Module resolution & utilities

Settings flow: DB (bisbond_settings) β†’ Laravel Cache β†’ Config file fallback

Health check output:

[
    'status'     => 'error',        // ok | warning | error
    'message'    => 'Missing SMS config',
    'suggestion' => 'Add your SMS provider API key',
]

πŸ—ΊοΈ Roadmap

  • Dashboard Control Center
  • Settings System with health checks
  • Module on/off system
  • Bangla formatter helpers
  • Invoice preview
  • SMS configuration UI
  • Route & Command explorer
  • Invoice PDF export
  • Live SMS sending integration
  • Payment gateway adapters (bKash, Nagad, SSLCommerz)
  • Provider registry system
  • Plugin architecture
  • Developer help UI

🀝 Contributing

Pull requests are welcome! For major changes, please open an issue first to discuss what you'd like to change.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

πŸ‘¨β€πŸ’» Author

Md. Ahsan Ul Alam
Full Stack Developer β€” Laravel Β· React.js Β· Next.js

⭐ Support

If Laravel Bisbond helps your project:

  • ⭐ Star this repository
  • πŸ’¬ Share your feedback via Issues
  • πŸš€ Use it and let others know

πŸ“œ License

Licensed under the MIT License.