Class 'Michielfb\Time' not found

vim*_*uth 1 laravel laravel-nova

Hi I'm using laravel nova and michielfb/laravel-nova-time-field package. This is my code.

use Michielfb\Time;

Time::make('Time')->format('HH:mm');
Run Code Online (Sandbox Code Playgroud)

But I'm getting this error.

Class 'Michielfb\Time' not found

It would be great if someone can help.

Bog*_*dan 5

Based on the namespace definition from the Time class, the use statement should be:

use Michielfb\Time\Time;
Run Code Online (Sandbox Code Playgroud)

and not

use Michielfb\Time;
Run Code Online (Sandbox Code Playgroud)

The example in the readme seems to be incorrect.