diff options
author | RoscoeDeWah <roscoe@wah.moe> | 2025-01-16 13:57:12 +0000 |
---|---|---|
committer | RoscoeDeWah <roscoe@wah.moe> | 2025-01-16 13:57:12 +0000 |
commit | cebb14f59cb54b24861a9aef03b9fcbf57465967 (patch) | |
tree | e0ab70bbba4ebb4821fb9a354eef55d30da90558 /app/View/Components/TohQuote.php | |
parent | da992ff1b780bf687ba2093d36c2def943296ec5 (diff) |
Remove *more* unused stuff
Diffstat (limited to 'app/View/Components/TohQuote.php')
-rw-r--r-- | app/View/Components/TohQuote.php | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/app/View/Components/TohQuote.php b/app/View/Components/TohQuote.php deleted file mode 100644 index a53d713..0000000 --- a/app/View/Components/TohQuote.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -namespace App\View\Components; - -use Closure; -use Illuminate\Contracts\View\View; -use Illuminate\View\Component; - -class TohQuote extends Component -{ - /** - * Create a new component instance. - */ - public function __construct() - { - // - } - - function returnQuote(): array { - $quotes = config('quotes.toh'); - $index = rand(0, count($quotes) - 1); - return $quotes[$index]; - } - - - /** - * Get the view / contents that represent the component. - */ - public function render(): View|Closure|string - { - return view('components.toh-quote',[ - 'quote' => $this->returnQuote() - ]); - } -} |