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

24 lines
399 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;
class CommonLayout 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.common');
}
}