akaunting 3.0 (the last dance)
This commit is contained in:
20
app/View/Components/Form/Group/Date.php
Normal file
20
app/View/Components/Form/Group/Date.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\View\Components\Form\Group;
|
||||
|
||||
use App\Abstracts\View\Components\Form;
|
||||
|
||||
class Date extends Form
|
||||
{
|
||||
public $type = 'date';
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*
|
||||
* @return \Illuminate\Contracts\View\View|string
|
||||
*/
|
||||
public function render()
|
||||
{
|
||||
return view('components.form.group.date');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user