TaM
TaM

Reputation: 35

How to Change Laravel Nova Lens Name

In laravel Nova resources I can change the resource name with label function but in Lens, with the same function it doesn't work.

Any idea?

Code:

public static function label(): string
{
    return 'Asistencias Empleados';
}

Upvotes: 1

Views: 606

Answers (1)

Shahab Zebari
Shahab Zebari

Reputation: 122

For lens we don't use labels for changing name we have this method name

public function name():string
{
    return __('Most Valuable Users');
}

Upvotes: 2

Related Questions