PHP code example of laraning / nova-time-field

1. Go to this page and download the library: Download laraning/nova-time-field library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

laraning / nova-time-field example snippets


namespace App\Nova;

use Laraning\NovaTimeField\TimeField;

class BlogPost extends Resource
{
    // ...

    public function fields(Request $request)
    {
        return [
            // ...

            TimeField::make('Post start Time'),
            // ...
        ];
    }
}

TimeField::make('Post start Time')->withTwelveHourTime(),

TimeField::make('Post start Time')->minuteIncrement(1),

TimeField::make('Post start Time')->withTimezoneAdjustments(),

TimeField::make('Post start Time')->withTimezoneAdjustments(60),