'Laravel Nova - Modify/Remove Actions Log UI Section
I want to remove the default action log UI section below a model's details.
If I remove the "Actionable" trait, then the action log is completely unavailable, including the tabbed pane.
So, I tried making a new class extending the ActionResource class to handle the UI, but I cannot find an interface that controls the UI section. What class/traits/interfaces control the Action log, and how can I hide it from view?
<?php
namespace App\Nova;
use Illuminate\Http\Request;
use Laravel\Nova\Actions\ActionResource;
class BetterActionResource extends ActionResource
{
public static $polling = false;
public static $showPollingToggle = true;
/**
* Get the displayable label of the resource.
*
* @return string
*/
public static function label()
{
return __('History');
}
/**
* Get the displayable singular label of the resource.
*
* @return string
*/
public static function singularLabel()
{
return __('Event');
}
}
How can I hide the action log while using an Actionable model?
Here is a screenshot to better describe the outcome I am going for.

Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
