The Meta component is used to place metadata on an html page.
use MoonShine\UI\Components\Layout\Meta;
Meta::make('csrf-token')
->customAttributes([
'content' => 'token',
]),
Meta::make()
->customAttributes([
'name' => 'description',
'content' => 'Page description',
]),
use MoonShine\UI\Components\Layout\Meta;
Meta::make('csrf-token')
->customAttributes([
'content' => 'token',
]),
Meta::make()
->customAttributes([
'name' => 'description',
'content' => 'Page description',
]),
use MoonShine\UI\Components\Layout\Meta;
Meta::make('csrf-token')
->customAttributes([
'content' => 'token',
]),
Meta::make()
->customAttributes([
'name' => 'description',
'content' => 'Page description',
]),