/**
  * Returns css for the given path
  * 
  * @return \Illuminate\Support\Facades\Response
  */
 private function stylesheet($path)
 {
     $this->prepareClientCache($path);
     $response = Response::make(Asset::stylesheet($path), 200);
     $response->header('Content-Type', 'text/css');
     return $response;
 }