System component Search

# Make

Системный компонент Search служит для отображения формы поиска в MoonShine.

Создать Search можно воспользовавшись статическим методом make() класса Search.

namespace App\MoonShine;
 
use MoonShine\Components\Layout\Header;
use MoonShine\Components\Layout\LayoutBuilder;
use MoonShine\Components\Layout\Search;
use MoonShine\Contracts\MoonShineLayoutContract;
 
final class MoonShineLayout implements MoonShineLayoutContract
{
public static function build(): LayoutBuilder
{
return LayoutBuilder::make([
Header::make([
Search::make()
]),
 
//...
]);
}
}