unused developments ejected

This commit is contained in:
Burak Civan
2022-10-18 17:18:32 +03:00
parent 3ab2129a35
commit eb7dcbfb05
8 changed files with 13 additions and 62 deletions

View File

@ -1,32 +0,0 @@
<?php
namespace App\View\Components;
use App\Abstracts\View\Component;
use Illuminate\Support\Str;
class MargueeText extends Component
{
public $width;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct(
string $width = 'auto'
) {
$this->width = $width;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.marguee-text');
}
}