|
<?php
|
|
|
|
namespace App\Livewire;
|
|
|
|
use Livewire\Component;
|
|
|
|
class LoginLayout extends Component
|
|
{
|
|
public $children;
|
|
|
|
public function mount($children = null)
|
|
{
|
|
$this->children = $children;
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.login-layout');
|
|
}
|
|
} |