genocide/radiocrud
最新稳定版本:V1.6.2
Composer 安装命令:
composer require genocide/radiocrud
包简介
fester, simpler way to create CRUD system in laravel
README 文档
README
I realised that i was doing a lot of copy paste and i was writing same code multiple times for different features, so i started making a custom system to avoid that.
installation
Run composer require genocide/radiocrud to install package.
After installing Radiocrud you should run php artisan vendor:publish --provider=Genocide\Radiocrud\RadiocrudServiceProvider. because there is a migration you need to have it in your app to use 'KeyValueConfigService'.
Then run php artisan migrate to migrate newly added migration.
you're not done!
this is last step of installation, i promise !
now you should add some file system disks, so Radiocrud can work with files.
add code below to config\filesystems.php (add it to "disks" array)
'public_uploads' => [
'driver' => 'local',
'root' => public_path(),
'throw' => false,
],
'base' => [
'driver' => 'local',
'root' => base_path(),
'throw' => false,
],
Radiocrud will use this file system disks to do things such as creating new Action class with command.
统计信息
- 总下载量: 220
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2022-10-30