Files
investbrain/app/View/Components/MainLayout.php
T
2024-08-05 22:41:53 -05:00

24 lines
402 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');
}
}