/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $metas = Metas::get();
     return response()->json($metas);
 }
 public function compose(View $view)
 {
     $view->with('tags', Metas::sidebar());
 }