PHP code example of michielfb / laravel-nova-time-field

1. Go to this page and download the library: Download michielfb/laravel-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/ */

    

michielfb / laravel-nova-time-field example snippets


use Michielfb\Time\Time;

Time::make('Time')
    ->withSeconds()
    ->format('h:i A', 'n/a');

use Michielfb\Time\Time;

Time::make('Time')
    ->format('h:i A', '-');

 
use Michielfb\Time\Time;

Time::make('Time')->withSteps(1);

 
use Michielfb\Time\Time;

Time::make('Time')->withSeconds();

 
use Michielfb\Time\Time;

Time::make('Time')->withMilliseconds();