Akaunting/app/View/Components/Transactions/Index/Content.php

19 lines
403 B
PHP

<?php
namespace App\View\Components\Transactions\Index;
use App\Abstracts\View\Components\Transactions\Index as Component;
class Content extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.transactions.index.content');
}
}