"graham-campbell/markdown": "^11.0",
"barryvdh/laravel-debugbar": "^3.2",
"league/commonmark-ext-autolink": "^1.0",
- "elasticquent/elasticquent": "^1.0"
+ "cviebrock/laravel-elasticsearch": "^3.6"
},
"require-dev": {
"filp/whoops": "^2.3",
--- /dev/null
+<?php
+
+
+namespace Cubist\Backpack\app\Console\Commands;
+
+use Illuminate\Console\Command;
+
+
+class SearchIndex extends Command
+{
+ protected $signature = 'cubist:search:index';
+ protected $description = 'Index data for search engine';
+
+ public function handle()
+ {
+
+ }
+}