PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
yajra
/
laravel-datatables-html
/
src
/
Html
/
Editor
/
Fields
<?php namespace Yajra\DataTables\Html\Editor\Fields; class Time extends DateTime { /** * Make a new instance of a field. * * @param string $name * @param string $label * @return static|\Yajra\DataTables\Html\Editor\Fields\File */ public static function make($name, $label = '') { /** @var \Yajra\DataTables\Html\Editor\Fields\Time $field */ $field = parent::make($name, $label); return $field->format('hh:mm a'); } /** * Set format to military time (24 hrs). * * @return $this */ public function military() { return $this->format('HH:mm'); } }
[-] File.php
[edit]
[+]
..
[-] Date.php
[edit]
[-] BelongsTo.php
[edit]
[-] Boolean.php
[edit]
[-] ReadOnly.php
[edit]
[-] Image.php
[edit]
[-] TextArea.php
[edit]
[-] Radio.php
[edit]
[-] Text.php
[edit]
[-] Select.php
[edit]
[-] Number.php
[edit]
[-] DateTime.php
[edit]
[-] Hidden.php
[edit]
[-] Password.php
[edit]
[-] Time.php
[edit]
[-] Field.php
[edit]
[-] Options.php
[edit]
[-] Checkbox.php
[edit]
[-] Select2.php
[edit]