/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     return View::make('admin.technologies.index')->with('technologies', Technology::all()->sortBy('sort'));
 }