2020-12-24 01:28:38 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\View\Components\Documents\Index;
|
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
use App\Abstracts\View\Components\Documents\Index as Component;
|
2020-12-24 01:28:38 +03:00
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
class RecurringTemplates extends Component
|
2020-12-24 01:28:38 +03:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the view / contents that represent the component.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Contracts\View\View|string
|
|
|
|
*/
|
|
|
|
public function render()
|
|
|
|
{
|
2022-06-01 10:15:55 +03:00
|
|
|
return view('components.documents.index.recurring_templates');
|
2020-12-24 01:28:38 +03:00
|
|
|
}
|
|
|
|
}
|