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