You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually i dont know how to use it since you are in your classes
Eg: use Stepanenko3\NovaCards\Cards\GreetingCard
Extended the card, and the Package ask to
```
Update your Card to extend ResourceCard instead of Card:
// MyResourceCard.php
...
use Formfeed\ResourceCards\ResourceCard;
class MyResourceCard extends ResourceCard {
...
}
Then simply include it like a normal card within your resource:
// MyNovaResource.php
use App\MyResourceCard;
...
class MyNovaResource extends Resource {
...
public function cards(NovaRequest $request) {
return [
MyResourceCard::make($request)
];
}
...
}
```
Kindly can you please give me some ideas how to implement your package with
this one.
I typically use https://novapackages.com/packages/formfeed-uk/nova-resource-cards , but I'm unsure if it's compatible with your package. Could you kindly confirm?
The text was updated successfully, but these errors were encountered: