warksit/time is a Laravel package for a laravel nova time field..
It currently has 1 GitHub stars and 7 downloads on Packagist (latest version 0.0.1).
Install it with composer require warksit/time.
Discover more Laravel packages by warksit
or browse all Laravel packages to compare alternatives.
Last updated
This package adds a basic HTML5 time field to Laravel Nova with the ability to include seconds.
Use composer to install the package.
composer require warksit/Time
To include seconds call includeSeconds() when you add the field.
namespace App\Nova;
use Warksit\Time\Time;
class BlogPost extends Resource
{
// ...
public function fields(Request $request)
{
return [
// ...
Time::make('Post start Time')->includeSeconds(),
// ...
];
}
}
If you would like finer grained control you can call step($value) with the required value.