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