/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $palettes = $this->palette->get();
     return View::make($this->namespace . '.index', compact('palettes'));
 }