orchidsoftware / crud

Simplify the process of building CRUD (Create, Read, Update, Delete) functionality in Laravel using the features of Orchid.
https://orchid.software
MIT License
138 stars 34 forks source link

How to avoid the resource showing up in the sidebar #14

Closed rabol closed 3 years ago

rabol commented 3 years ago

Hi

How is it possible to avoid that a resource shows up in the sidebar ?

tabuna commented 3 years ago

Released a new version https://github.com/orchidsoftware/crud/releases/tag/2.5.0 Which contains a method for excluding a resource from the navigation.

/**
 * Get the resource should be displayed in the navigation
 *
 * @return bool
 */
public static function displayInNavigation(): bool
{
    return false;
}