diff --git a/app/Nova/Tag.php b/app/Nova/Tag.php index 64494ad2..4421229b 100644 --- a/app/Nova/Tag.php +++ b/app/Nova/Tag.php @@ -19,13 +19,17 @@ 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('https://fontawesome.com/icons'), - Select::make('Type')->options([ - 'search' => 'search', - ]), + Select::make('Type') + ->options([ + 'search' => 'search', + ]), ]; }