yuriy-martini / laravel-nova-fields
Installs: 648
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/yuriy-martini/laravel-nova-fields
Requires
- php: ^8.0
- laravel/nova: ^4
Requires (Dev)
- orchestra/testbench: >=6.0
- phpstan/phpstan: >=1.0
- squizlabs/php_codesniffer: >=3.1
This package is not auto-updated.
Last update: 2025-10-01 23:40:16 UTC
README
Installation
composer require yuriy-martini/laravel-nova-fields
Usage
app/Nova/Fields/Text.php
:
<?php namespace App\Nova\Fields; class Text extends \Laravel\Nova\Fields\Text { use \YuriyMartini\Laravel\Nova\Fields\Concerns\IsRequired; }
app/Nova/User.php
:
<?php namespace App\Nova; class User extends Resource { public function fields(NovaRequest $request): array { return [ \App\Nova\Fields\Text::make('Name'), ]; } }
Changelog
Please see Changelog File for more information on what has changed recently.
Testing
composer test
License
The MIT License (MIT). Please see License File for more information.