vito/app/Http/Livewire/Profile/TwoFactorAuthentication.php
Saeed Vaziry 9030427f78
Two factor (#47)
* init 2fa

* fix code style
2023-09-11 20:47:44 +02:00

15 lines
272 B
PHP

<?php
namespace App\Http\Livewire\Profile;
use Illuminate\Contracts\View\View;
use Livewire\Component;
class TwoFactorAuthentication extends Component
{
public function render(): View
{
return view('livewire.profile.two-factor-authentication');
}
}