lasthourcloud/app/Http/Livewire/Application/Secrets.php

14 lines
204 B
PHP
Raw Normal View History

2023-04-19 10:42:15 +00:00
<?php
namespace App\Http\Livewire\Application;
use Livewire\Component;
class Secrets extends Component
{
public function render()
{
return view('livewire.application.secrets');
}
}