コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $reviews = Review::all();
     return response()->json($reviews);
 }
コード例 #2
0
ファイル: ReviewRepository.php プロジェクト: hktang/apnis
 /**
  * Get all reviews.
  *
  * @return Collection
  */
 public function forAll()
 {
     return Review::all();
 }