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

refs #14 Added method for hidden resource in navigation #16

Closed tabuna closed 3 years ago

tabuna commented 3 years ago

If you do not want a resource to appear in the navigation, you may override the displayInNavigation method of your resource class:

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