64robots / nova-fields
A Laravel Nova field.
Fund package maintenance!
beliolfa
Installs: 926 101
Dependents: 5
Suggesters: 1
Security: 0
Stars: 286
Watchers: 6
Forks: 78
Open Issues: 29
Language:Vue
Requires
- php: ^7.1|^8.0
- dev-master
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.0
- 0.13.1
- 0.13.0
- 0.12.0
- 0.11.2
- 0.11.1
- 0.11.0
- 0.10.5
- 0.10.4
- 0.10.3
- 0.10.2
- 0.10.1
- 0.10.0
- 0.8.9
- 0.8.8
- 0.8.7
- 0.8.6
- 0.8.5
- 0.8.4
- 0.8.3
- 0.8.2
- 0.8.1
- 0.8.0
- 0.7.7
- 0.7.6
- 0.7.5
- 0.7.4
- 0.7.3
- 0.7.2
- 0.7.1
- 0.7.0
- 0.6.8
- 0.6.7
- 0.6.6
- 0.6.5
- 0.6.4
- 0.6.3
- 0.6.2
- 0.6.1
- 0.6.0
- 0.5.0
- 0.4.9
- 0.4.8
- 0.4.7
- 0.4.6
- 0.4.5
- 0.4.4
- 0.4.3
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.9
- 0.3.8
- 0.3.7
- 0.3.6
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.12
- 0.2.11
- 0.2.10
- 0.2.9
- 0.2.8
- 0.2.7
- 0.2.6
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.15
- 0.1.14
- 0.1.13
- 0.1.12
- 0.1.11
- 0.1.10
- 0.1.9
- 0.1.8
- 0.1.7
- 0.1.6
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- dev-dependabot/npm_and_yarn/minimist-1.2.8
- dev-dependabot/npm_and_yarn/http-cache-semantics-4.1.1
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/qs-6.5.3
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/terser-4.8.1
- dev-dependabot/npm_and_yarn/async-2.6.4
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/prismjs-1.27.0
- dev-row_index_view
- dev-fix/date-time-field
- dev-malinowskip-master
- dev-fix/json_subfields
- dev-fix/20191009
- dev-docs
- dev-fix/creation_fields_new_structure
This package is auto-updated.
Last update: 2024-10-31 00:23:20 UTC
README
Nova Fields is a collection of rewriten "native" fields that comes with Nova. We are also adding new fields and utilities as we find the need.
The idea here is making them more configurable and reusable in package development. These components have a lot of new methods to customize the look and feel, behavior, etc...
Vue components also emit events that propagates up to the chain so are ideal to reuse them in other Nova packages.
Looking forward to see your feedback.
Available fields:
- ID
- Text
- Number
- Textarea
- Select
- Password
- Boolean
- Trix
- File
- Image
- BelongsTo
- Currency
- Status
- Avatar
- Gravatar
- Code
- Country
- Date
- DateTime
- Markdown
- Place
- Timezone
Custom Fields
- Autocomplete
- JSON
- Row
Install
Run this command in your nova project:
composer require 64robots/nova-fields
Usage:
// use R64\NovaFields\<NAME OF THE FIELD>; use R64\NovaFields\Boolean; Boolean::make('Activo', 'active') ->yesLabel('Yeah') ->noLabel('Nope') ->hideLabelInDetail() ->dotClasses('some classes') ->successClass('bg-warning')