ali-awwad / create-relation-on-resource
A Laravel Nova field.
Package info
github.com/ali-awwad/create-relation-on-resource
Language:Vue
pkg:composer/ali-awwad/create-relation-on-resource
0.0.1
2019-12-12 19:58 UTC
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2026-02-17 16:41:41 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(), ]; }