tag icons

This commit is contained in:
Benjamin Takats
2022-12-04 19:56:42 +01:00
parent 2d5af7f4ae
commit bfe15e80a0

View File

@@ -19,11 +19,15 @@ class Tag extends Resource
public function fields(Request $request)
{
return [
Text::make('Name')->sortable(),
Text::make('Name')
->sortable(),
Text::make('Translation')->sortable(),
Text::make('Icon')
->sortable()
->help('<a href="https://fontawesome.com/icons" target="_blank">https://fontawesome.com/icons</a>'),
Select::make('Type')->options([
Select::make('Type')
->options([
'search' => 'search',
]),