nova-inline-relationship icon indicating copy to clipboard operation
nova-inline-relationship copied to clipboard

A package to present relationships as inline properties in Nova.

Results 70 nova-inline-relationship issues
Sort by recently updated
recently updated
newest added

We have this package setup with ebess/advanced-nova-media-library and it does not save images when creating or updating a record. Any ideas regarding what would cause this? Is anyone else using...

needs more info
third party

Hey, thanks for this really useful package! Found these minor changes while exploring the package

This is the relation between Brand and Attachment Models ``` // brand has one attachment public function attachment() { return $this->hasOne(Attachment::class); } ``` ``` // attachment belongs to brand public...

Hi, The requireChild() is not working for me. I don't Know if I missed anything. In my case, I have a Client With a Many to Many relationship with Website....

Example model: ```php public function getTitleAttribute() { return 'test'; } ``` Example resource: ```php Text::make(__('Title'), 'title'), ``` In result Title field don't displayed.

```php DateTime::make(__('Terminated at'), 'terminated_at'), DateTime::make(__('Registered at'), 'registered_at'), DateTime::make(__('Created at'), 'created_at'), DateTime::make(__('Updated at'), 'updated_at'), ``` In details correct order: ![image](https://user-images.githubusercontent.com/38257723/73264975-0545d400-41e5-11ea-818a-3bbaca2655bc.png) In inline fields re-ordered: ![image](https://user-images.githubusercontent.com/38257723/73264993-11ca2c80-41e5-11ea-87d0-661c981995e1.png)

Example ```php Text::make(__('Visible'), 'id')->displayUsing( function() { return 'yes';} ) ``` In resource details all ok: ![image](https://user-images.githubusercontent.com/38257723/73263676-2527c880-41e2-11ea-8826-abfe25e2976b.png) But on inline `displayUsing()` ignored: ![image](https://user-images.githubusercontent.com/38257723/73263696-2fe25d80-41e2-11ea-9d45-4cd212f93be1.png)

When i try to use it inside NovaDependencyContainer for example `inline(), ])->dependsOn('premium', false),>` It doesn't give me any error but the related model is not created , any idea why...

third party

I wanted to use the Integration available for the NovaDependencyContainer. The normal `compose require kirschbaum-development/nova-inline-relationship` did not pull the integrations folder, hence I used `compose require kirschbaum-development/nova-inline-relationship:dev-master`. Now, When I...

bug