oneduo/nova-time-field is a Laravel package for a laravel nova time field.
It currently has 13 GitHub stars and 182.043 downloads on Packagist (latest version v2.1.0).
Install it with composer require oneduo/nova-time-field.
Discover more Laravel packages by oneduo
or browse all Laravel packages to compare alternatives.
Last updated
This package requires the following :
To get started, you will need to install the following dependencies :
composer require oneduo/nova-time-field
That's it, you're ready to go!
You may use the Time in your Nova resource :
// app/Nova/User.php
use Oneduo\NovaTimeField\Time;
class User extends Resource
{
// ...
public function fields(NovaRequest $request): array
{
return [
// ... any other fields
Time::make(__('time'), 'time'),
];
}
}
See also the list of contributors who participated in this project.
Please see CHANGELOG for more information what has changed recently.
Please review our security policy on how to report security vulnerabilities.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.