Files
akaunting/app/View/Components/Documents/Form/Totals.php
2021-05-12 19:17:07 +03:00

19 lines
387 B
PHP

<?php
namespace App\View\Components\Documents\Form;
use App\Abstracts\View\Components\DocumentForm as Component;
class Totals extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.documents.form.totals');
}
}