Skip to content

warksit/time

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Nova Time Field

This package adds a basic HTML5 time field to Laravel Nova with the ability to include seconds.

Installation

Use composer to install the package.

composer require warksit/Time

Usage

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.