unused files deleted

This commit is contained in:
Burak Civan 2022-09-22 10:12:04 +03:00
parent b163b1a03b
commit fa5612e54e
2 changed files with 0 additions and 64 deletions

View File

@ -1,32 +0,0 @@
<?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');
}
}

View File

@ -1,32 +0,0 @@
<?php
namespace App\View\Components\Loading;
use App\Abstracts\View\Component;
class Content 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.content');
}
}