mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 18:01:37 +00:00
15 lines
238 B
PHP
15 lines
238 B
PHP
<?php
|
|
|
|
namespace App\View\Components;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class SettingsLayout extends Component
|
|
{
|
|
public function render(): View
|
|
{
|
|
return view('layouts.settings');
|
|
}
|
|
}
|