22 lines
388 B
PHP
Raw Permalink Normal View History

2022-10-12 12:46:29 +03:00
<?php
namespace App\View\Components\Show;
use App\Abstracts\View\Component;
class Right extends Component
{
public $disableLoading = false;
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.show.content.right');
}
}