mirbaagheri / invoice
为 Laravel 5 创建发票管理器的库
1.0.1
2018-09-21 13:14 UTC
Requires
- php: >=5.4.0
This package is auto-updated.
Last update: 2024-09-22 03:07:19 UTC
README
composer require mirbaagheri/invoice
将以下内容添加到位于 config/app.php
的 Laravel 配置文件中
将 Mirbaagheri\Invoice\Laravel\InvoiceServiceProvider::class
添加到 providers
数组。
将 'Invoice' => Mirbaagheri\Invoice\Laravel\Facades\Invoice::class
添加到 aliases class
。
运行以下命令以发布迁移和配置文件
php artisan vendor:publish --provider="Mirbaagheri\Invoice\Laravel\InvoiceServiceProvider"
发布资源后,运行以下命令以迁移 Sentinel
php artisan migrate