Files
investbrain/app/View/Components/MainLayout.php
T
2025-01-28 17:14:49 -06:00

24 lines
401 B
PHP

<?php
namespace App\View\Components;
use Illuminate\View\Component;
use Illuminate\View\View;
class MainLayout extends Component
{
public function __construct(
// Slots
public mixed $body = null,
) {}
/**
* Get the view / contents that represents the component.
*/
public function render(): View
{
return view('layouts.main-layout');
}
}