mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
20 lines
334 B
PHP
20 lines
334 B
PHP
<?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');
|
|
}
|
|
}
|