mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
add webln test page
This commit is contained in:
19
app/Http/Livewire/Test/WebLN.php
Normal file
19
app/Http/Livewire/Test/WebLN.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Livewire\Test;
|
||||
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use Livewire\Component;
|
||||
|
||||
class WebLN extends Component
|
||||
{
|
||||
public function logThis($text)
|
||||
{
|
||||
Log::info('WEBLN: ' . $text);
|
||||
}
|
||||
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.test.web-l-n')->layout('layouts.test');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user