示例#1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     return response()->json(Cover::all());
 }
示例#2
0
 public function index()
 {
     $covers = Cover::all();
     return view('admin.cover.index', compact('covers'));
 }