2022-09-22 09:39:47 +03:00

32 lines
572 B
PHP

<?php
namespace App\View\Components\Loading;
use App\Abstracts\View\Component;
class Absolute extends Component
{
public $hidden;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct(
bool $hidden = false,
) {
$this->hidden = $hidden;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.loading.absolute');
}
}