public function get_index()
 {
     $testimonials = Testimonial::with('organisations')->order_by('client', 'asc')->paginate(20);
     return View::make('user.testimonials.testimonials')->with('testimonials', $testimonials);
 }