2020-12-24 01:28:38 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\View\Components\Documents\Form;
|
|
|
|
|
2020-12-28 16:21:09 +03:00
|
|
|
use App\Abstracts\View\Components\DocumentForm as Component;
|
2020-12-24 01:28:38 +03:00
|
|
|
|
|
|
|
class Totals extends Component
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the view / contents that represent the component.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Contracts\View\View|string
|
|
|
|
*/
|
|
|
|
public function render()
|
|
|
|
{
|
2021-05-12 19:17:07 +03:00
|
|
|
return view('components.documents.form.totals');
|
2020-12-24 01:28:38 +03:00
|
|
|
}
|
|
|
|
}
|