aberbin96/nova-promocodes-4
Composer 安装命令:
composer require aberbin96/nova-promocodes-4
包简介
A Laravel Nova tool.
README 文档
README
Adaptation of the promocodes library for laravel nova 4.
Nova 3 version: https://github.com/zgabievi/nova-promocodes
Configuration
php artisan vendor:publish --provider="Aberbin96\NovaPromocodes\ToolServiceProvider"
Now you can change configurations as you need:
return [ 'models' => [ 'promocodes' => [ 'resource' => \Aberbin96\NovaPromocodes\Resources\Promocode::class, ], 'users' => [ 'resource' => \App\Nova\User::class, ], ], ];
After you configure this file, run migrations:
php artisan migrate
Include Tool
Include promocodes tool inside nova service provider.
use Aberbin96\NovaPromocodes\PromocodesTool; class NovaServiceProvider extends NovaApplicationServiceProvider { // ... /** * Get the tools that should be listed in the Nova sidebar. * * @return array */ public function tools() { return [ PromocodesTool::make(), ]; } }
Parent Package
For more information about parent package, visit zgabievi/laravel-promocodes.
Credits
统计信息
- 总下载量: 719
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-07-09