/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $customers = Customers::latest()->get();
     return view('customers.index', compact('customers'));
 }