/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $customers = Customer::all();
     return view('customer.index')->with('customer', $customers);
 }