diff --git a/app/Http/Livewire/Helper/FollowTheRabbit.php b/app/Http/Livewire/Helper/FollowTheRabbit.php new file mode 100644 index 00000000..89805abc --- /dev/null +++ b/app/Http/Livewire/Helper/FollowTheRabbit.php @@ -0,0 +1,13 @@ + + src="{{ asset('img/news_2.png') }}" alt="">
+ + + +
+ +
+ + +
diff --git a/resources/views/livewire/wallet/lightning-wallet.blade.php b/resources/views/livewire/wallet/lightning-wallet.blade.php index 457e1cc7..31546cc1 100644 --- a/resources/views/livewire/wallet/lightning-wallet.blade.php +++ b/resources/views/livewire/wallet/lightning-wallet.blade.php @@ -92,7 +92,7 @@ -
+
{{ __('Scan this code or copy & paste it to your lightning wallet. Or click to login with your wallet.') }}
@endif diff --git a/routes/web.php b/routes/web.php index add37a98..ddcfc3e3 100644 --- a/routes/web.php +++ b/routes/web.php @@ -11,6 +11,10 @@ Route::middleware([]) ->get('/hello', \App\Http\Livewire\Hello::class) ->name('hello'); +Route::middleware([]) + ->get('/kaninchenbau', \App\Http\Livewire\Helper\FollowTheRabbit::class) + ->name('kaninchenbau'); + Route::get('/img/{path}', \App\Http\Controllers\ImageController::class) ->where('path', '.*') ->name('img');