public function Songs()
 {
     $songs = Song::orderByRaw("RAND()")->take(10)->get();
     return Response()->json(array('data' => $songs), 200);
 }