Remove unused stuff
This commit is contained in:
parent
a349858a7d
commit
da992ff1b7
117 changed files with 34 additions and 463 deletions
|
@ -6,7 +6,7 @@
|
|||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class CurrentTrack extends Component
|
||||
class LastFMCurrent extends Component
|
||||
{
|
||||
public $track;
|
||||
/**
|
||||
|
@ -22,6 +22,6 @@ public function __construct($track)
|
|||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
return view('components.current-track');
|
||||
return view('components.lasfm-current');
|
||||
}
|
||||
}
|
|
@ -6,7 +6,7 @@
|
|||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class TopTracks extends Component
|
||||
class LastFMTop extends Component
|
||||
{
|
||||
public $tracks;
|
||||
/**
|
||||
|
@ -22,6 +22,6 @@ public function __construct($tracks)
|
|||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
return view('components.top-tracks');
|
||||
return view('components.lastfm-top');
|
||||
}
|
||||
}
|
|
@ -6,7 +6,7 @@
|
|||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class Track extends Component
|
||||
class LastFMTrack extends Component
|
||||
{
|
||||
public $track;
|
||||
public $count;
|
||||
|
@ -24,6 +24,6 @@ public function __construct($track, $count)
|
|||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
return view('components.track');
|
||||
return view('components.lastfm-track');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue