akaunting/app/View/Components/Documents/Form/Note.php

19 lines
383 B
PHP
Raw Normal View History

2020-12-23 22:28:38 +00:00
<?php
namespace App\View\Components\Documents\Form;
2020-12-28 13:21:09 +00:00
use App\Abstracts\View\Components\DocumentForm as Component;
2020-12-23 22:28:38 +00:00
class Note extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.documents.form.note');
}
}