akaunting/app/View/Components/Transfers/Show/Create.php

19 lines
389 B
PHP
Raw Normal View History

2021-07-09 20:36:41 +00:00
<?php
namespace App\View\Components\Transfers\Show;
2022-06-01 07:15:55 +00:00
use App\Abstracts\View\Components\Transfers\Show as Component;
2021-07-09 20:36:41 +00:00
2022-06-01 07:15:55 +00:00
class Create extends Component
2021-07-09 20:36:41 +00:00
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
2022-06-01 07:15:55 +00:00
return view('components.transfers.show.create');
2021-07-09 20:36:41 +00:00
}
}