예제 #1
0
 /**
  * Display a listing of the resource.
  * GET /billings
  *
  * @return Response
  */
 public function index()
 {
     $billings = Billing::all();
     return View::make('billings.index', compact('billings'));
 }