aboutsummaryrefslogtreecommitdiff
path: root/app/View/Components/Wah.php
diff options
context:
space:
mode:
authorfloppydiskette <floppydisk@hyprcat.net>2024-11-30 22:42:42 +0000
committerfloppydiskette <floppydisk@hyprcat.net>2024-11-30 22:42:42 +0000
commit70234f23f8a90e80bd6e3d3ad356fc111a1c89c7 (patch)
tree232418c61e393ccdf2cdb6b0a544300af936994c /app/View/Components/Wah.php
parent588966a94fe385a7c9f4ea8f2a6ff3af3c92feb2 (diff)
AAAAA
Diffstat (limited to 'app/View/Components/Wah.php')
-rw-r--r--app/View/Components/Wah.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/app/View/Components/Wah.php b/app/View/Components/Wah.php
new file mode 100644
index 0000000..c8ee36c
--- /dev/null
+++ b/app/View/Components/Wah.php
@@ -0,0 +1,39 @@
+<?php
+
+namespace App\View\Components;
+
+use Closure;
+use Illuminate\Contracts\View\View;
+use Illuminate\Support\Facades\Cache;
+use Illuminate\Support\Facades\Config;
+use Illuminate\Support\Facades\Http;
+use Illuminate\View\Component;
+
+class Wah extends Component
+{
+ /**
+ * Create a new component instance.
+ */
+ public function __construct() {}
+
+
+ public function getWah(): string {
+ try {
+ $response = Http::get('https://api.tinyfox.dev/img.json?animal=wah');
+ $data = $response->json();
+ return "https://tinyfox.dev".$data["loc"];
+ } catch (Exception $ex) {
+ return "";
+ }
+
+ }
+
+ /**
+ * Get the view / contents that represent the component.
+ */
+ public function render(): View|Closure|string {
+ return view('components.wah', [
+ 'wah' => $this->getWah(),
+ ]);
+ }
+}