ahsan-ul-alam/laravel-bisbond 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ahsan-ul-alam/laravel-bisbond

Composer 安装命令:

composer require ahsan-ul-alam/laravel-bisbond

包简介

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

README 文档

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.

ahsan-ul-alam/laravel-bisbond 适用场景与选型建议

ahsan-ul-alam/laravel-bisbond 是一款 基于 Blade 开发的 Composer 扩展包,目前已累计 4 次下载、GitHub Stars 达 2, 最近一次更新时间为 2026 年 04 月 06 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「invoice」 「laravel」 「dashboard」 「regional」 「Bangla」 「bangladesh」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 ahsan-ul-alam/laravel-bisbond 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 ahsan-ul-alam/laravel-bisbond 我们能提供哪些服务?
定制开发 / 二次开发

基于 ahsan-ul-alam/laravel-bisbond 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 4
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 34
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 0
  • Forks: 0
  • 开发语言: Blade

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-04-06