/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $orders = $this->order->paginate(10); return view('admin.orders.index', compact('orders')); }