コード例 #1
0
 /**
  * Display a listing of the resource.
  * GET //credit
  *
  * @return Response
  */
 public function index()
 {
     $credits = Credit::all();
     return View::make('backend.code.credit.index', compact('credits'));
 }