ali-awwad / create-relation-on-resource
A Laravel Nova field.
Installs: 29 311
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 3
Forks: 3
Open Issues: 4
Language:Vue
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2024-12-17 14:02:08 UTC
README
For now, this works for BelongsTo. Only "BelongsToWithCreate" is available, my plan in the future is to do "BlongsToMany" one.
Install
Run this command in your nova project:
composer require ali-awwad/create-relation-on-resource
Usage:
use AliAwwad\CreateRelationOnResource\BelongsToWithCreate; public function fields(Request $request) { return [ BelongsToWithCreate::make('Language')->quickCreate(), ]; }