Esempio n. 1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $donations = Donation::orderBy('created_at', 'desc')->paginate($this->perPage);
     return View::make('donations.list', array('donations' => $donations));
 }