gy492 / hzc
There is no license information available for the latest version (dev-main) of this package.
test
dev-main
2023-04-03 09:03 UTC
This package is not auto-updated.
Last update: 2025-07-07 19:38:47 UTC
README
#安装扩展包 composer update gy492/hzc
在config/app.php文件添加配置
providers 里添加
Gy\Packagetest\PackagetestServiceProvider::class
aliases 里添加
'Packagetest' => Gy\Packagetest\Facades\Packagetest::class
执行 composer dump-autoload
发布服务 php artisan vendor:publish --provider="Gy\Packagetest\PackagetestServiceProvider"
创建迁移表文件 php artisan make:migration create_table_banner 生成数据表 php artisan migrate
填充数据 php artisan db:seed --class 'BannerTableSeeder'