Akaunting/app/View/Components/Documents/Form/RecurringMetadata.php

19 lines
412 B
PHP
Raw Normal View History

2022-06-01 07:15:55 +00:00
<?php
namespace App\View\Components\Documents\Form;
use App\Abstracts\View\Components\Documents\Form as Component;
class RecurringMetadata extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.documents.form.recurring_metadata');
2022-06-01 07:15:55 +00:00
}
}