Files
investbrain/app/View/Components/MainLayout.php
T

24 lines
402 B
PHP
Raw Normal View History

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