wamesk / laravel-nova-unit
Laravel Nova 4 组件。
2.3
2024-09-13 08:31 UTC
Requires
- laravel/framework: 9.*|10.*|11.*
- laravel/nova: ^4.0
README
要求
laravel/nova: ^4.0
安装
composer require wamesk/laravel-nova-unit
php artisan vendor:publish --provider="Wame\LaravelNovaUnit\PackageServiceProvider"
php artisan migrate
php artisan db:seed --class=UnitSeeder
将策略添加到 ./app/Providers/AuthServiceProvider.php
protected $policies = [ 'App\Models\Unit' => 'App\Policies\UnitPolicy', ];
用法
Select::make(__('product.field.unit'), 'unit_id') ->help(__('product.field.unit.help')) ->options(UnitController::selectOptions())