Skip to content

Instantly share code, notes, and snippets.

@czemu

czemu/Recipe.php Secret

Created March 6, 2020 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save czemu/2f1f5ea8beea0250b23d29301546d9ed to your computer and use it in GitHub Desktop.
Save czemu/2f1f5ea8beea0250b23d29301546d9ed to your computer and use it in GitHub Desktop.
<?php
namespace App\Nova;
class Recipe extends Resource {
/**
* The columns that should be searched.
*
* @var array
*/
public static $search = [
'id', 'name', 'ingredients', 'preparation_description'
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment