/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $orders = $this->orders->getOrdersFor(\Auth::user());
     return view('frontend.my-orders', compact('orders'));
 }