コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     //$tickets = Ticket::with('events')->paginate(10);
     $tickets = Ticket::paginate(10);
     return view('tickets.index')->with('tickets', $tickets);
 }